[A83] Ion enhancer
[Prev][Next][Index][Thread]
[A83] Ion enhancer
Hi,
This is ion enhancer. It is an ion module which runs at the background,
because it's assembly, it's unsee-able fast.
; Ion Enhancer by Zeekoe
; how many times did you 'do something' in ion?
; (2 times triggered while starting, 1 time when typing)
#include "ion.inc"
#ifdef TI83P
.org sram-2
.db $BB,$6D
#else
.org sram
#endif
ret
.db $02 ;$02
ld hl,times
ld a,(hl)
inc a
ld (hl),a
cp $FF
.db 00h ;these should
.db 00h ;be changed
.db 00h ;to CA00C9
ret ;or another ramclear-routine
times: ;(on-calc, probably)
.db 0,0,0,0 ;extra zeros for safety or just for fun
.end
END