- Timestamp:
- Mar 12, 2007 2:04:18 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19441
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r1364 r1427 1581 1581 void put_str(action, s) 1582 1582 Bit16u action; 1583 char*s;1583 Bit8u *s; 1584 1584 { 1585 Bit8u c; 1585 1586 if (!s) 1586 1587 s = "<NULL>"; 1587 else 1588 while (*s != 0) 1589 send(action, *s++); 1588 1589 while (c = read_byte(get_CS(), s)) { 1590 send(action, c); 1591 s++; 1592 } 1590 1593 } 1591 1594 #endif /* VBOX */
Note:
See TracChangeset
for help on using the changeset viewer.