; vim: set filetype=z80 : #include "ti86asm.inc" #include "ti86math.inc" #include "ti86ops.inc" #include "ti86abs.inc" .org _asm_exec_ram call _clrLCD ld a,0 ld (_curRow),a ld a,0 ld (_curCol),a ld hl,String call _puts call _getkey ret String: .db "Hola mundo!",0 .end .end