[A83] Re: Yup, More Problems With Ion


[Prev][Next][Index][Thread]

[A83] Re: Yup, More Problems With Ion




> .db $BB6D
....Well, if this is actually how you have it in your source, then that
would pose a problem.  The TIOS squished ASM header is two bytes, 0BBh, and
06Dh, so you should have this instead:
    .db    $BB,$6D

-Dan Englender

----- Original Message -----
From: "Steve Watson" <fif_freak00@hotmail.com>
To: <Assembly-83@lists.ticalc.org>
Sent: Tuesday, March 13, 2001 7:52 PM
Subject: [A83] Yup, More Problems With Ion


>
> OK, the test program still doesn't show up at all!  Here's the source (I
> followed EVERYTHING that Joe and IonGuru said):
> .nolist
> #include "ion.inc"
> .list
>
> #ifdef TI83P
> .org progstart-2
> .db $BB6D
> #else
> .org progstart
> #endif
> xor a
> jr nc,start
> .db "Test Detect",0
> start:
> bcall(_clrlcdf)
> bcall(_homeup)
> ld hl,txt
> bcall(_puts)
> bcall(_getkey)
> ret
> txt:
> .db "Hey!",0
> .end
> .end
>
> I checked it over and over and didn't find anything wrong!
> _________________________________________________________________
> Get your FREE download of MSN Explorer at http://explorer.msn.com
>
>
>





References: