Re: A86: Calc. Start up
[Prev][Next][Index][Thread]
Re: A86: Calc. Start up
okay I've tried writting a program (to see if I can do it) that would display
"Online..." everytime the Calc. was turned on. And I can't get it to work...
can someone show me how to load the instructions into the right spot (
_alt_on_exec ???) the right way?
The following code obviously doesn't work... maybe it's because I don't know
how to do those checksum things... Oh and all of the include files are
there... I just didn't attach that part of code.
.org _alt_on_exec
Program:
ld hl,string
call _puts
ret
string:
.db "Online...",0
.end