On Thursday (05/27/2010 at 12:24PM -0600), Clay Archer wrote:
Or the real hex codes are: 7F,00,80,39
Which represent the 6800 instructions:
CLR 00 80 ; clear memory at 0x8000
RTS ; return from subroutine
Actually, if the hex is 7F 00 80, then you are doing
CLR 0x0080
RTS
not
CLR 0x8000
RTS
The 6800 is big endian.
--
Chris Elmquist