Changeset 526 in xtideuniversalbios for trunk/Assembly_Library/Src/Serial
- Timestamp:
- Mar 15, 2013, 1:38:58 AM (12 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Assembly_Library/Src/Serial
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Assembly_Library/Src/Serial/SerialServer.asm
r491 r526 4 4 ; 5 5 ; XTIDE Universal BIOS and Associated Tools 6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.6 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 7 7 ; 8 8 ; This program is free software; you can redistribute it and/or modify -
trunk/Assembly_Library/Src/Serial/SerialServerScan.asm
r376 r526 7 7 8 8 ; 9 ; XTIDE Universal BIOS and Associated Tools 10 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.9 ; XTIDE Universal BIOS and Associated Tools 10 ; Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 11 11 ; 12 12 ; This program is free software; you can redistribute it and/or modify … … 14 14 ; the Free Software Foundation; either version 2 of the License, or 15 15 ; (at your option) any later version. 16 ; 16 ; 17 17 ; This program is distributed in the hope that it will be useful, 18 18 ; but WITHOUT ANY WARRANTY; without even the implied warranty of 19 19 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 ; GNU General Public License for more details. 20 ; GNU General Public License for more details. 21 21 ; Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 22 22 ; 23 23 24 24 25 25 %include "SerialServer.inc" 26 26 27 27 ; Section containing code 28 28 SECTION .text 29 29 30 30 ;-------------------------------------------------------------------- 31 ; SerialServerScan_ScanForServer: 31 ; SerialServerScan_ScanForServer: 32 32 ; Parameters: 33 33 ; BH: Drive Select byte for Drive and Head Select Register … … 42 42 ; AL, BX, CX, DX, DI 43 43 ;-------------------------------------------------------------------- 44 SerialServerScan_ScanForServer: 44 SerialServerScan_ScanForServer: 45 45 mov cx, 1 ; one sector, not scanning (default) 46 46 … … 103 103 jc .nextBaud 104 104 105 .error: 105 .error: 106 106 ret 107 107 … … 114 114 db SERIAL_COM1_IOADDRESS >> 2 115 115 db 0 116 116 117 117 118 118 ;-------------------------------------------------------------------- … … 145 145 146 146 mov bp,sp 147 147 148 148 call SerialServer_SendReceive 149 149
Note:
See TracChangeset
for help on using the changeset viewer.