Show
Ignore:
Timestamp:
08/05/09 02:59:44 (3 years ago)
Author:
brandonlw
Message:

We can now receive a copy of the TI-OS and save it to pages 04h-07h and 74h-7Bh (pages 00h-03h are redirected to pages 70h-73h, and 7Ch-7Dh to 6Ah-6Bh)
Now we just need the boot loader and TI-OS patches to allow on-the-fly dual booting
And direct USB support so everyone can use it...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/page00/display.asm

    r29 r35  
    33 
    44 PUBLIC AnimateRunIndicator,DispHexA,PutS,PutC,curBlink,SaveOScreen,DispHexHL,EraseEOL,ClrLCDFull 
    5  PUBLIC _LCD_COMMAND,SetXAutoIncrementMode,SetYAutoIncrementMode 
     5 PUBLIC _LCD_COMMAND,SetXAutoIncrementMode,SetYAutoIncrementMode,IPutSB 
    66 EXTERN IsAtEditTail,IsAtBtm,LCDDelay 
    77 
     
    1111       call LCDDelay 
    1212       out (LCDinstPort),a 
     13       ret 
     14 
     15IPutSB: 
     16       push bc 
     17       ld a,(hl) 
     18       inc hl 
     19       call PutC 
     20       pop bc 
     21       djnz IPutSB 
    1322       ret 
    1423