Changeset 33
- Timestamp:
- 08/02/09 05:04:44 (3 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
OS2.zws (modified) (1 diff)
-
page1C/linkprotocol.asm (modified) (1 diff)
-
page1C/silentlink.asm (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/OS2.zws
r22 r33 54 54 SOURCE = page1d\1dbase.asm 55 55 SOURCE = includes\os2.inc 56 SOURCE = includes\internal.inc 56 57 #end 57 58 -
trunk/page1C/linkprotocol.asm
r31 r33 14 14 ld hl,0 15 15 ld (header+2),hl 16 jr Send4Bytes 16 call Send4Bytes 17 call Get4BytesNC 18 ld a,(header+1) 19 cp 56h 20 ret z 21 jp JErrorNo 17 22 18 23 SendCommandA: -
trunk/page1C/silentlink.asm
r31 r33 9 9 EXTERN DispHexA,LdHLInd,SendAcknowledge,ReceiveHeaderPacket,SendSkipExitPacket,Get4BytesNC,SendCommandA 10 10 EXTERN Send4Bytes,SendCAndAddToChecksum,LCDDelay,_LCD_COMMAND,SendAByte,SetXAutoIncrementMode 11 EXTERN SetYAutoIncrementMode,SendContinue,ReceiveDataPacket 11 EXTERN SetYAutoIncrementMode,SendContinue,ReceiveDataPacket,DispHexHL 12 12 13 13 keyscnlnk: … … 171 171 ;TODO: actually implement all of this 172 172 ReceiveOSPage: 173 ld hl,(curRow) 174 push hl 175 ld hl,7 176 ld (curRow),hl 177 ld a,(ioData+8) 178 call DispHexA 179 ld hl,(ioData+6) 180 call DispHexHL 181 pop hl 182 ld (curRow),hl 173 183 call SendContinue 174 184 ld bc,(ioData)
