Changeset 30

Show
Ignore:
Timestamp:
08/02/09 03:28:46 (3 years ago)
Author:
brandonlw
Message:

Not only do remote screenshot requests work, but the framework is set up to start receiving a copy of the TI-OS

Location:
trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • trunk/page00/boot.asm

    r29 r30  
    593593       out (memPageAPort),a 
    594594       ld hl,(4000h) 
     595       inc hl 
    595596       ld a,h 
    596597       or l 
     
    614615sStartTransfer: 
    615616       DB "TI-OS not found." 
    616        DB "Send via PC or  " 
    617        DB "other calculator" 
    618        DB "to enable dual  " 
     617       DB "Send TI-OS to   " 
     618       DB "enable dual     " 
    619619       DB "booting.",0 
    620620SwitchToTIOS: 
  • trunk/page00/util.asm

    r29 r30  
    2424LCDDelay: 
    2525       push af 
    26 $$:    in a,(2) 
     26$$:    in a,(statusPort) 
    2727       and 2 
    2828       jr z,$B 
  • trunk/page01/01base.asm

    r27 r30  
    88 
    99GetKey: 
    10        in a,(2) 
    11        and 80h 
     10       in a,(statusPort) 
     11       and STATUS_NON_83P_MASK 
    1212       jr z,GetKeyStart 
    1313       set linkAssistEnabled,(iy+linkAssistFlags) 
     
    6464       jr GetKeyMainLoop 
    6565receivingData: 
    66        ld hl,(curRow) 
    67        push hl 
    68        ld hl,2 
    69        ld (curRow),hl 
    70        call EraseEOL 
    7166       B_CALL keyscnlnk 
    72        pop hl 
    73        ld (curRow),hl 
    7467       call GetCSC 
    7568       ld a,(kbdKey) 
  • trunk/page1C/silentlink.asm

    r29 r30  
    8181       res indicOnly,(iy+indicFlags) 
    8282       ld a,lcdXAutoIncrementMode 
    83        out (LCDinstPort),a 
     83       call _LCD_COMMAND 
    8484eiRet: ei 
    8585       ret