Changeset 30
- Timestamp:
- 08/02/09 03:28:46 (3 years ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
page00/boot.asm (modified) (2 diffs)
-
page00/util.asm (modified) (1 diff)
-
page01/01base.asm (modified) (2 diffs)
-
page1C/silentlink.asm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/page00/boot.asm
r29 r30 593 593 out (memPageAPort),a 594 594 ld hl,(4000h) 595 inc hl 595 596 ld a,h 596 597 or l … … 614 615 sStartTransfer: 615 616 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 " 619 619 DB "booting.",0 620 620 SwitchToTIOS: -
trunk/page00/util.asm
r29 r30 24 24 LCDDelay: 25 25 push af 26 $$: in a,( 2)26 $$: in a,(statusPort) 27 27 and 2 28 28 jr z,$B -
trunk/page01/01base.asm
r27 r30 8 8 9 9 GetKey: 10 in a,( 2)11 and 80h10 in a,(statusPort) 11 and STATUS_NON_83P_MASK 12 12 jr z,GetKeyStart 13 13 set linkAssistEnabled,(iy+linkAssistFlags) … … 64 64 jr GetKeyMainLoop 65 65 receivingData: 66 ld hl,(curRow)67 push hl68 ld hl,269 ld (curRow),hl70 call EraseEOL71 66 B_CALL keyscnlnk 72 pop hl73 ld (curRow),hl74 67 call GetCSC 75 68 ld a,(kbdKey) -
trunk/page1C/silentlink.asm
r29 r30 81 81 res indicOnly,(iy+indicFlags) 82 82 ld a,lcdXAutoIncrementMode 83 out (LCDinstPort),a83 call _LCD_COMMAND 84 84 eiRet: ei 85 85 ret
