I am making a ti 83+ and 84+ emulator for the CE but don't have a name yet.
First I am making it for PC for ease of debugging then I will port it to the CE.
So far I have this as the z80 emulator base and have gotton the LCD ports to work including the very hard to implement for me in ($11). Now I will start working on the keyboard and then memory banking. Here is a screen shot and code that produced it.
Code:
And the correct output :
I was thinking about the TI81+CE project's naming convention and really liked it although it loses some of its charm here and I can't think of anything better.
Any other names you have are welcome as well.
First I am making it for PC for ease of debugging then I will port it to the CE.
So far I have this as the z80 emulator base and have gotton the LCD ports to work including the very hard to implement for me in ($11). Now I will start working on the keyboard and then memory banking. Here is a screen shot and code that produced it.
Code:
.org 0
xor a
out ($10),a
ld a,5
out ($10),a
ld a,$21
out ($10),a
ld a,$81
out ($10),a
ld a,3
out ($10),a
ld b,7
ld hl,sprite
loop:
ld a,(hl)
inc hl
out ($11),a
djnz loop
ld a,57
in a,($11)
dec a
out ($11),a
jr $
sprite:
.db 0,$12,$12,0,0,$21,$1E,0And the correct output :
I was thinking about the TI81+CE project's naming convention and really liked it although it loses some of its charm here and I can't think of anything better.
Any other names you have are welcome as well.



