First: sorry if this is in the wrong spot. I am new to this site and I didn't know where the heck to put this post after a good 10 minutes of looking.
For reference, this is my file tree
D:
/Asm
/Tasm
tasm, binpac8x, etc.
/Source
first.z80
/Exec
I am new to z80 programming, and I am trying to get my first program assembled and converted into 8xp. I started with my code, first.z80 (yes, this is copied from McLaughlin's tutorial):
Code:
Using tasm -80 -i -b d:\asm\source\first.z80 d:\asm\exec\first.bin, I created a first.bin in my exec folder. However, when I ran "python binpac8x.py ..\Exec\first.bin" from the Tasm folder, it created "first.bin.bin" in my exec folder rather than "first.8xp"
Maybe this was supposed to happen, but I couldn't find any occurrences of it on the forum. Am I doing something wrong? Any help would be greatly appreciated!
For reference, this is my file tree
D:
/Asm
/Tasm
tasm, binpac8x, etc.
/Source
first.z80
/Exec
I am new to z80 programming, and I am trying to get my first program assembled and converted into 8xp. I started with my code, first.z80 (yes, this is copied from McLaughlin's tutorial):
Code:
.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)
ret
msg:
.db "Hello world!", 0
.end
.end
Using tasm -80 -i -b d:\asm\source\first.z80 d:\asm\exec\first.bin, I created a first.bin in my exec folder. However, when I ran "python binpac8x.py ..\Exec\first.bin" from the Tasm folder, it created "first.bin.bin" in my exec folder rather than "first.8xp"
Maybe this was supposed to happen, but I couldn't find any occurrences of it on the forum. Am I doing something wrong? Any help would be greatly appreciated!