0 Members and 1 Guest are viewing this topic.
@echo offecho ==== Compileert %1.z80 voor de TI-83+ of TI-84+. ====tasm64 -80 -i -b c:\asm\source\%1.z80 c:\asm\exec\%1.binif errorlevel 1 goto FOUTENcd c:\asm\execc:\asm\tasm\devpac8x %1cd c:\asm\tasmecho ==== Klaar; het programma is opgeslagen in Exec\%1.8xp ====goto KLAAR:FOUTENecho ==== Fouten!!! ====:KLAARdel c:\asm\exec\%1.bin > NULecho ==== Klaar ====
.nolist#include "ti83plus.inc"#define ProgStart $9D95.list.org ProgStart - 2 .db t2ByteTok, tAsmCmp b_call(_ClrLCDFull) ld hl, 0 ld (PenCol), hl ld hl, msg b_call(_PutS) ; Display the text b_call(_NewLine) retmsg: .db "Hello world!", 0.end.end
c:\asm\Tasm>asm example==== Compileert example.z80 voor de TI-83+ of TI-84+. ====TASM Z80 Assembler. Version 3.2 September, 2001. Copyright (C) 2001 Squak Valley Softwaretasm: pass 1 complete.c:\asm\source\example.z80 line 0007: unrecognized instruction. (B_CALL(_CLRLCDFULL))c:\asm\source\example.z80 line 0011: unrecognized instruction. (B_CALL(_PUTS))c:\asm\source\example.z80 line 0012: unrecognized instruction. (B_CALL(_NEWLINE))tasm: pass 2 complete.tasm: Number of errors = 3==== Fouten!!! ======== Klaar ====
That's ok, I hope your problem is solved now. Also use the "Edit" button instead of double posting next time