Changeset 226 in xtideuniversalbios for trunk/XTIDE_Universal_BIOS/Src
- Timestamp:
- Jan 28, 2012, 3:08:47 AM (13 years ago)
- google:author:
- gregli@hotmail.com
- Location:
- trunk/XTIDE_Universal_BIOS/Src/Device/Serial
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/XTIDE_Universal_BIOS/Src/Device/Serial/SerialCommand.asm
r223 r226 91 91 mov [bp+IDEPACK.bFeatures],ah ; store protocol command 92 92 93 mov dl, byte [di+DPT .bSerialPortAndBaud]93 mov dl, byte [di+DPT_SERIAL.bSerialPortAndBaud] 94 94 95 95 ; fall-through … … 113 113 push di 114 114 push bp 115 push es116 115 117 116 ; … … 438 437 pop bp ; recover ax (command and count) from stack, throw away 439 438 440 pop es441 439 pop bp 442 440 pop di -
trunk/XTIDE_Universal_BIOS/Src/Device/Serial/SerialDPT.asm
r203 r226 18 18 or byte [di+DPT.bFlagsHigh], FLGH_DPT_SERIAL_DEVICE 19 19 mov al, [RAMVARS.xlateVars+XLATEVARS.bLastSerial] 20 mov byte [di+DPT .bSerialPortAndBaud], al20 mov byte [di+DPT_SERIAL.bSerialPortAndBaud], al 21 21 ret 22 22
Note:
See TracChangeset
for help on using the changeset viewer.