1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931
|
/* second.S - LILO second stage boot loader */
/* Copyright 1992-1998 Werner Almesberger. See file COPYING for details. */
#define LILO_ASM
#include "lilo.h"
#ifdef DEBUG
#define DBG_LREAD 1
#endif
#define UI_MAGIC 0xff /* take input from keyboard */
.text
.globl _main
.org 0
_main: jmp start
.org 6
! Boot device parameters. They are set by the installer.
sig: .ascii "LILO"
stage: .word STAGE_SECOND
version:.word VERSION
.org CODE_START_2
start: seg ss ! use a COM port ?
mov dx,DSC_OFF-6+SSDIFF
sub dl,#1
jc nocom ! no -> go on
xor ax,ax ! initialize the serial port
xchg al,dh
push ax
push dx
int 0x14
xor ax,ax ! get the port address
mov ds,ax
pop bx
shl bx,1
mov dx,(bx+0x400)
seg cs ! keep it
mov slbase,dx
pop ax ! special baud rate test
and al,#0xe0
cmp al,#0x20 ! 150 bps ?
je b19200 ! yes -> set 19200 bps
cmp al,#0x60 ! 600 bps ?
jne stdbps ! no -> continue
mov bx,#3 ! 38400 bps
jmp spcbps
b19200: mov bx,#6 ! 19200 bps
spcbps: cli ! do not disturb ...
add dx,#3 ! enable divisor latch access
in al,dx
or al,#0x80
out dx,al
sub dx,#3 ! set new divisor
xchg al,bl
out dx,al
inc dx
mov al,bh
out dx,al
inc dx ! disable divisor latch access
inc dx
mov al,bl
and al,#0x7f
out dx,al
sub dx,#3 ! correct base address
sti ! done
stdbps: mov cx,#32 ! drain the queue (if any)
drain: in al,dx
loop drain
add dx,5 ! clear the status register
in al,dx
mov al,#13 ! send "\r\nLI" to the serial port
call serdisp
mov al,#10
call serdisp
mov al,#0x4c
call serdisp
mov al,#0x49
call serdisp
jmp comcom ! proceed with the rest of "LILO"
nocom:
#ifndef LCF_NODRAIN
mov cx,#32 ! drain type-ahead buffer ?
drkbd: mov ah,#1 ! is a key pressed ?
int 0x16
jz comcom ! no -> done
xor ah,ah ! get the key
int 0x16
loop drkbd
#endif
comcom: mov al,#0x4c ! display an 'L'
call display
xor ax,ax ! get pointer to disk parameter table in DS:SI
mov ds,ax
lds si,0x78
#ifndef LCF_XL_SECS
cmp byte ptr (si+4),#9 ! okay ?
ja dskok ! yes -> do not patch
#endif
mov ax,cs ! get pointer to new area in ES:DI
mov es,ax
mov di,#dskprm
mov cx,#6 ! copy 12 bytes
rep
movsw
seg es ! patch number of sectors
#ifndef LCF_XL_SECS
mov byte ptr (di-8),#18
#else
mov byte ptr (di-8),#LCF_XL_SECS
#endif
cli ! paranoia
xor ax,ax ! store new pointer
mov ds,ax
mov 0x78,#dskprm
mov 0x7a,es
sti
dskok: seg cs ! clear the break flag
mov byte ptr break,#0
call instto ! get timer interrupt
jmp restrt ! get going
! Die
crshbrn:mov al,#63 ! display a question mark
call display
zzz: jmp zzz ! sit here forever
! Restart here after a boot error
restrt: mov ax,cs ! adjust segment registers
mov ds,ax
mov es,ax
cli ! reset SP (we might have restarted with some
mov sp,#STACK ! data on the stack)
sti
cmp sig,#0x494c ! check that this is really loaded at the
! right place ...
jne crshbrn
cmp sig+2,#0x4f4c
jne crshbrn
cmp stage,#STAGE_SECOND
jne crshbrn
cmp version,#VERSION
jne crshbrn
mov cmdbeg,#acmdbeg ! probably unattended boot
ldsc: mov al,#1 ! load the descriptor table
mov bx,#DESCR
seg ss
mov cx,DSC_OFF+SSDIFF
seg ss
mov dx,DSC_OFF+2+SSDIFF
call cread
jc fdnok ! error -> retry
mov al,#1 ! load the second sector
mov bx,#DESCR+512
seg ss
mov cx,DSC_OFF2+SSDIFF
seg ss
mov dx,DSC_OFF2+2+SSDIFF
call cread
jc fdnok ! error -> retry
mov si,#DESCR ! compute a checksum of the descriptor table
mov bx,#INIT_CKS
cld
mov cx,#0x200
csloop: lodsw
xor bx,ax
loop csloop
or bx,bx ! okay ?
jnz chkerr
seg ss ! load the keyboard translation table
mov cx,MSG_OFF+SSDIFF+7
seg ss
mov dx,MSG_OFF+SSDIFF+9
mov bx,#KEYTABLE
mov al,#1
call cread
jc fdnok
mov al,#1 ! load the default command line
mov bx,#DFLCMD
seg ss
mov cx,DFCMD_OFF+SSDIFF
seg ss
mov dx,DFCMD_OFF+2+SSDIFF
call cread
jc fdnok ! error -> retry
mov bx,#DFLCMD
cmp word ptr (bx),#DC_MAGIC ! okay ?
jne bdcmag ! no -> do not write
#ifndef LCF_READONLY
mov word ptr (bx),#DC_MGOFF ! erase the magic number
mov al,#1
seg ss
mov cx,DFCMD_OFF+SSDIFF
seg ss
mov dx,DFCMD_OFF+2+SSDIFF
call cwrite
#endif
jmp dokay ! continue
bdcmag: mov byte ptr (bx+2),#0 ! disable the command line
jmp dokay ! go on
fdnok: xor ax,ax ! reset FDC
mov dl,al
int 0x13
br ldsc ! retry
! Checksum error
chkerr: mov al,#45 ! display a minus sign
call display
sixfeet:jmp sixfeet ! sit here forever
! List all known boot images
list: mov byte ptr (bx),#0 ! set EOL marker
mov bx,#crlf ! display a CRLF
call say
mov si,#DESCR+2 ! list all images
mov cx,#IMAGES
xor dl,dl ! DL counts the images
lloop: testb (si),#0xff ! done ?
jz ldone ! yes
mov bx,si ! display the name
call say
add si,#MAX_IMAGE_NAME
inc dl ! count the image
test dl,#3 ! inside line -> go on
jnz fill
mov bx,#crlf ! new line
call say
jmp imgdne ! next image
fill: push bx ! fill with spaces
mov al,#0x20
call display
pop bx
inc bx
cmp bx,si
jbe fill
imgdne: add si,#DESCR_SIZE-MAX_IMAGE_NAME
loop lloop ! next image
ldone: test dl,#3 ! already at BOL ?
jz atbol ! yes -> no CRLF
mov bx,#crlf ! display a CRLF
call say
atbol: br iloop ! done
! Ready to process user input
dokay: mov bx,#ospc ! display 'O '
call say
mov ospc,#0 ! disable the message
mov word ptr vgaovr,#VGA_NOCOVR ! disable VGA override
mov word ptr memlim,#0 ! no memory limit
xor ax,ax ! get the delay and disable further delays
seg ss
xchg ax,DSC_OFF-8+SSDIFF
or old_del,ax ! remember delay
mov nodfl,#iloop ! interactive prompt if falling through
seg ss ! enter boot prompt ?
cmp byte ptr DSC_OFF+15+SSDIFF,#0
jne extp ! yes -> check for external parameters
mov nodfl,#bfirst ! boot first image if falling through
call waitsh ! wait for a shifting key
jc iloop ! key pressed -> enter interactive mode
! Check for external parameters
extp: seg ss ! external parameters ?
cmp byte ptr EX_OFF+6,#EX_DL_MAG
jne noex ! no -> go on
seg ss ! clear flag
mov byte ptr EX_OFF+6,#0
seg ss ! load the signature pointer
les bx,EX_OFF
seg es ! "LI" ?
cmp (bx),#EX_MAG_L
jne noex ! no -> go on
seg es ! "LO" ?
cmp (bx+2),#EX_MAG_H
jne noex ! no -> go on
seg ss
mov si,EX_OFF+4 ! pointer to the command line
seg es
cmp byte ptr (si),#0 ! empty ?
je iloop ! yes -> enter interactive mode
jmp niloop ! enter non-interactive mode
! No external parameters after timeout -> boot first image
noex: mov ax,cs ! restore ES
mov es,ax
mov si,#DFLCMD+2 ! default command line ?
cmp byte ptr (si),#0
jne niloop ! yes -> use it
mov ax,nodfl ! no idea how to tell as86 to do jmp (addr) :-(
jmp ax ! fall through
tolist: br list ! ...
! Command input processor
iloop: seg ss ! message disabled ?
cmp MSG_OFF+SSDIFF,#0
je nomsg ! yes -> skip this
mov bx,#crlf ! move to a new line
call say
seg ss ! load the message file
mov cx,MSG_OFF+SSDIFF+2
seg ss
mov dx,MSG_OFF+SSDIFF+4
mov bx,#MAP
mov al,#1
call sread
call loadfile
seg ss
mov ax,#SYSSEG
mov ds,ax
xor bx,bx ! set the terminating NUL and disable further
! messages
seg ss
xchg bx,MSG_OFF+SSDIFF
mov byte ptr (bx),#0
xor bx,bx ! display the message
call say
mov ax,cs ! restore segment registers
mov ds,ax
mov es,ax
nomsg: mov cmdbeg,#acmdbeg ! probably unattended boot
mov si,#usrinpm ! interactive mode
niloop: mov bx,#msg_p ! display boot prompt
call say
mov bx,#cmdline ! move cursor to the end of the line
clend: mov al,(bx)
or al,al ! at end ?
jz cledne ! yes -> go on
push bx ! display the character
call display
pop bx
inc bx ! next one
jne clend
cledne: mov byte ptr prechr,#32 ! character before command line is a space
! Input loop
input: seg es ! interactive mode ?
cmp byte ptr (si),#UI_MAGIC
je kbinp ! yes -> get keyboard input
seg es ! get non-interactive input
mov al,(si)
inc si
jmp gotinp ! go on
kbinp: mov cx,#brto ! get a key
call getkey
gotinp: cmp al,#9 ! TAB ?
je tolist ! yes -> list images
cmp al,#63 ! "?" ?
je tolist ! yes -> list images
or al,al ! NUL ?
je nul ! yes -> go on
cmp al,#13 ! CR ?
je cr ! yes -> go on
cmp al,#8 ! BS ?
je todelch ! yes -> erase one character
cmp al,#127 ! DEL ?
je todelch ! yes -> erase one character
ja input ! non-printable -> ignore it
cmp al,#21 ! ^U ?
je todell ! yes -> erase the line
cmp al,#24 ! ^X ?
je todell ! yes -> erase the line
cmp al,#32 ! ignore non-printable characters except space
jb input
ja noblnk ! no space -> go on
cmp (bx-1),al ! second space in a row ?
je input ! yes -> ignore it
noblnk: cmp bx,#cmdline+CL_LENGTH ! at end of buffer ?
je input ! yes -> ignore
mov (bx),al ! store in the buffer
inc bx ! increment pointer
push bx
call display ! echo
pop bx
cmp bx,#cmdline+1 ! first character ?
jne input ! no -> next input
#ifdef LCF_IGNORECASE
call upcase ! convert to upper case
#endif
mov cx,#IMAGES ! check if we have a single-key entry
mov di,#DESCR+2
mov ah,al
sklp: test word ptr (di+FLAGS_OFF),#FLAG_SINGLE ! single-key entry ?
jz sknext ! no -> try next
mov al,(di) ! get first character
#ifdef LCF_IGNORECASE
call upcase ! convert to upper case
#endif
cmp al,ah ! do we have a match ?
jne sknext ! no -> try next
cmp byte ptr (di+1),#0 ! at end ?
je cr ! yes -> run it
sknext: add di,#DESCR_SIZE ! test next entry
loop sklp ! next one
jmp input ! done -> get more input
todelch:br delch ! ...
todell: br delline ! ...
! End of input, process the command line
nul: push bx ! automatic boot - wait for timeout
mov ax,old_del
call waitsh
pop bx
jnc crnul ! no key pressed -> continue
mov bx,#msg_int ! interrupted -> display a message
call say
br iloop ! return to interactive prompt
cr: mov cmdbeg,#mcmdbeg ! probably manual boot
crnul: mov byte ptr break,#0 ! clear the break flag
mov ax,cs ! set ES to CS
mov es,ax
xor al,al ! mark end
mov (bx),al
mov si,#cmdline ! copy command line to save buffer
mov di,#lkcbuf
mov byte ptr dolock,#0 ! disable locking
push es
mov ax,ds
mov es,ax
cpsav: lodsb ! copy one byte
stosb
or al,al ! at end ?
jnz cpsav ! no -> go on
pop es
cmp bx,#cmdline ! empty line ?
je notrspc ! yes -> boot first image
cmp byte ptr (bx-1),#32 ! trailing space ?
jne notrspc ! no -> go on
dec bx ! remove the space
mov byte ptr (bx),al
notrspc:mov si,#cmdline ! scan the command line for "vga=", "kbd=",
mov di,si ! "lock" or "mem="
cld
chkvga: cmp word ptr (si),#0x6776 ! "vga=" ?
jne vsktk ! no -> try "kbd="
cmp word ptr (si+2),#0x3d61
jne vsktk
call setvga ! set VGA mode
jc toiloop ! error -> get next command
jmp vskdb ! proceed by discarding last blank
vsktk: cmp word ptr (si),#0x626b ! "kbd=" ?
jne vsktl ! no -> try "lock"
cmp word ptr (si+2),#0x3d64
jne vsktl
call putkbd ! pre-load keyboard buffer
jmp vskdb ! proceed by discarding last blank
vsktl: cmp word ptr (si),#0x6f6c ! "lock" ?
jne vsktm ! no -> skip to next blank
cmp word ptr (si+2),#0x6b63
jne vsktm
mov byte ptr dolock,#1 ! enable locking
add si,#4 ! skip word
vskdb: dec di ! discard last blank
jmp vsknb ! continue
vsktm: cmp word ptr (si),#0x656d ! "mem=" ?
jne vsknb ! no -> skip to next blank
cmp word ptr (si+2),#0x3d6d
jne vsknb
call getmem ! get the user-provided memory limit
vsknb: lodsb ! copy one byte
stosb
cmp al,#32 ! space ?
je chkvga ! yes -> look for options again
or al,al ! at end ?
jnz vsknb ! no -> go on
mov bx,#crlf ! display a CRLF
call say
cmp di,#cmdline+1 ! empty line ?
emptyl: je bfirst ! yes -> boot first image
jmp bcmd ! boot the specified image
toiloop:br iloop ! ...
toinput:br input ! ...
! Find the boot image and start it
bcmd: mov cx,#IMAGES ! test all names
mov bx,#DESCR+2
nextn: mov si,bx ! compare the names
mov di,#cmdline
nextc: mov al,(si) ! get next character
or al,al ! NUL ?
jz dscend ! yes -> possible match
! get the character
#ifdef LCF_IGNORECASE
call upcase
#endif
mov ah,al
mov al,(di)
#ifdef LCF_IGNORECASE
call upcase
#endif
cmp al,ah ! character equal ?
jne skipn ! no -> try next one
inc si ! test next character
inc di
jmp nextc
dscend: cmp byte ptr (di),#32 ! space or NUL -> boot
je boot
cmp byte ptr (di),#0
je boot
skipn: add bx,#DESCR_SIZE ! test next name
loop nextn
mov bx,#msg_nf ! not found -> display a message
call say
br iloop ! get more input
! Delete one character
delch: cmp bx,#cmdline ! at the beginning ?
je toinput ! yes -> do nothing
push bx ! display BS,SPC,BS
mov bx,#bs
call say
pop bx
dec bx ! move the pointer
jmp toinput ! go on
! Delete the entire line
delline:cmp bx,#cmdline ! done ?
je toinput ! yes -> go on
push bx ! display BS,SPC,BS
mov bx,#bs
call say
pop bx
dec bx ! move the pointer
jmp delline ! next one
! Boot first after timeout
brto: mov bx,#crlf ! display a CRLF
call say
jmp brfrst ! boot
! Boot the first image
bfirst: mov byte ptr lkcbuf,#0 ! clear default
cmp byte ptr cmdline,#0 ! is there a default ?
jne bcmd ! yes -> boot that image
brfrst: mov bx,#DESCR+2 ! boot the first image
mov si,bx ! copy the name to the command line
mov di,#cmdline
cld
bfcpl: lodsb ! copy one character
mov (di),al
inc di
or al,al ! NUL ?
jnz bfcpl ! no -> next one
! Boot the image BX points to (with password check)
boot: mov si,#cmdline ! locate start of options
locopt: lodsb
or al,al ! NUL ?
je optfnd ! yes -> no options
cmp al,#32 ! space ?
jne locopt ! no -> continue searching
cmp (si),#0 ! followed by NUL ?
jne optfnd ! no -> go on
mov byte ptr (si-1),#0 ! discard trailing space
optfnd: dec si ! adjust pointer
mov options,si ! store pointer for later use
cmp byte ptr (bx+MAX_IMAGE_NAME+1),#0 ! use a password ?
je toboot ! no -> boot
test (bx+FLAGS_OFF),#FLAG_RESTR ! restricted ?
jz dopw ! no -> get the password
cmp byte ptr (si),#0! are there any options ?
jne dopw ! yes -> password required
toboot: br doboot ! ...
dopw: push bx ! save the image descriptor
lea si,(bx+MAX_IMAGE_NAME+1) ! get a pointer to the password string
mov bx,#msg_pw ! display a prompt
call say
pwagain:xor cl,cl ! CL counts characters after a mismatch
pwloop: push cx ! get a key
mov cx,#pwtime
call getkey
pop cx
cmp al,#13 ! CR ?
je pwcr ! yes -> handle it
cmp al,#21 ! ^U ?
je pwdell ! yes -> erase line
cmp al,#24 ! ^X
je pwdell
cmp al,#8 ! BS ?
je pwdelch ! yes -> erase one character
cmp al,#127 ! DEL
je pwdelch
ja pwloop ! ignore other non-printable characters
cmp al,#32
jb pwloop
or cl,cl ! counting bad input ?
jnz pwbad ! yes -> do it
cmp al,(si) ! correct input ?
je pwgood ! yes -> go on
pwbad: inc cl ! count error
jnz pwgood ! no overflow -> go on
dec cl ! adjust it
jmp pwcr ! terminate input
pwgood: inc si ! good character -> go on
jmp pwloop
pwdell: pop si ! reset the pointer
push si
add si,#MAX_IMAGE_NAME+1
jmp pwagain ! get password again
pwdelch:pop bx ! at the beginning of the line ?
push bx
add bx,#MAX_IMAGE_NAME+1
cmp si,bx
je pwloop ! yes -> ignore it
dec si ! remove one character
sub cl,#1
jnc pwloop ! no underflow -> go on
inc cl ! adjust it
jmp pwloop ! next character
pwtime: pop cx ! drop CX ...
mov cl,#1 ! ... and fail
pwcr: mov bx,#crlf ! display a CRLF
call say
pop bx ! restore the image descriptor
or cl,cl ! no errors ?
jnz pwfail ! no -> fail
cmp byte ptr (si),#0 ! at end ?
je doboot ! yes -> continue booting
pwfail: mov bx,#msg_pf ! display an error message
call say
br iloop ! get next input
! Boot the image BX points to
doboot: mov byte ptr prechr,#61 ! switch to equal sign
push bx ! save image descr
mov bx,#msg_l ! say hi
call say
pop bx ! display the image name
push bx
call say
pop si
add si,#ADDR_OFFS
cld
! take care of the RAM disk first
mov word ptr (rdmid),#0 ! clear address
lodsw ! number of bytes to load (low word)
mov dx,ax
mov rdszl,ax
lodsw ! high word
mov rdszh,ax
xchg ax,dx ! convert to pages
add ax,#4095
adc dx,#0
mov bx,#4096
div bx
mov bx,ax
lodsw ! address of the first map sector
mov cx,ax
lodsw
mov dx,ax
inc si ! skip number of sectors
or bx,bx ! no RAM disk ?
jz noramd ! yes -> skip it
push si ! save SI, ES, and BX (RD size)
push es
push bx
mov bx,#MAP ! load the first map sector
mov al,#1
call sread
mov moff,#0
#ifdef DEBUG
mov bx,#stepa
call say
#endif
mov ah,#0x88 ! okay, compute load address now
int 0x15 ! get amount of memory ...
cmp word ptr memlim,#0 ! limit set by user ?
je noulim ! no -> continue
mov ax,memlim ! use user limit
sub ax,#1024 ! -1 MB
noulim: cmp ax,#0x3c00 ! more than 16 MB ?
jbe no16mb ! no -> go ahead
mov ax,#0x3c00 ! limit to 16 MB to be nice to the BIOS
! (kernel can still use "high" memory)
no16mb: shr ax,1 ! round to pages
shr ax,1
pop bx ! subtract RAM disk size
sub ax,bx
jnc rdokay ! panic if not enough space
cmp ax,#128 ! we probably need more than 512 kB for the
ja rdokay ! kernel to be useful ...
mov bx,#msg_rd ! complain
call say
jmpi restrt,SECONDSEG ! ... and restart if we can
rdokay: add ax,#256 ! start is at first MB ...
shl ax,1 ! *16
shl ax,1
shl ax,1
shl ax,1
mov (gdt+0x1b),ax ! set up GDT
mov byte ptr (gdt+0x1a),#0
mov (rdmid),ax ! ... and remember that for patching setup
xor ax,ax ! ES=0 is our secret code to load via GDT
mov es,ax
mov bx,#gdt
call lfile ! load it
pop es ! restore ES and SI
pop si
noramd: lodsw ! address of the first map sector
mov cx,ax
lodsw
mov dx,ax
inc si ! skip number of sectors
mov word ptr (gdt+0x1b),#0 ! set GDT to "load low"
lodsw ! get the start page
or ax,ax ! load low ?
jz nohigh ! yup -> do it
shl ax,1 ! *16
shl ax,1
shl ax,1
shl ax,1
mov (gdt+0x1b),ax ! set up GDT
mov byte ptr (gdt+0x1a),#0
nohigh:
push si ! save SI
#ifdef DEBUG
mov bx,#step0
call say
#endif
mov bx,#MAP ! load the first map sector
mov al,#1
call sread
mov moff,#0 ! reset the pointer
#ifdef DEBUG
mov bx,#step0b
call say
#endif
mov bx,#DFLCMD ! load the default command line
seg ss
mov cx,DFCMD_OFF+SSDIFF
seg ss
mov dx,DFCMD_OFF+2+SSDIFF
mov al,#1
call cread
push word ptr (DFLCMD) ! push magic number
mov bx,#DFLCMD ! load the fallback sector
call load1
pop ax ! valid magic number ?
#ifndef LCF_READONLY
cmp ax,#DC_MAGIC
je dclok ! yes -> can write
cmp ax,#DC_MGOFF
jne nofbck ! invalid -> must not write
dclok: mov bx,#DFLCMD ! fallback data present ?
cmp word ptr (bx),#DC_MAGIC
jne nofbck ! no -> go on
seg ss ! write new line
mov cx,DFCMD_OFF+SSDIFF
seg ss
mov dx,DFCMD_OFF+2+SSDIFF
mov al,#1
call cwrite
nofbck:
#endif
#ifdef DEBUG
mov bx,#step1
call say
#endif
mov bx,#DFLCMD ! load the options sector
call load1
mov si,cmdbeg ! copy non-options part of command line
mov di,#PARMLINE
cpnocl: cmp si,options ! at beginning of options ?
je cpnodn ! yes -> go on
movsb ! copy one byte
jmp cpnocl ! next one
cpnodn: mov si,#DFLCMD ! constant options ?
cmp byte ptr (si),#0
je nocopt ! no -> go on
mov al,#32 ! add a space
stosb
cpcodsp:lodsb ! fetch next byte
cmp al,#32 ! space ?
je cpcodsp ! yes -> discard it
cpcolp: or al,al ! NUL ?
jz cpcodn ! yes -> done
stosb ! store byte
cmp al,#32 ! a space ?
je cpcodsp ! yes -> discard next
lodsb ! get next byte
jmp cpcolp
cpcodn: cmp byte ptr (di-1),#32 ! last was space ?
jne nocopt ! no -> go on
dec di ! discard it
nocopt: mov si,options ! append variable options
cpvalp: lodsb ! copy one byte
stosb
or al,al ! NUL ?
jnz cpvalp ! no -> go on
#ifdef DEBUG
mov bx,#step2
call say
#endif
mov ax,#INITSEG ! load the original boot sector
mov es,ax
xor bx,bx ! load now
call load1
seg es
mov CL_MAGIC_ADDR,#CL_MAGIC ! set magic number
seg es
mov word ptr CL_OFFSET,#PARMLINE+SECOND_SS
! set parameter line offset
pop si ! restore SI
lodsw ! get flags bit map
mov bx,ax
lodsw ! copy parameters ... VGA mode ... (done)
cmp word ptr vgaovr,#VGA_NOCOVR ! VGA mode not overridden on
! command line ?
je vganorm ! no -> go on
mov ax,vgaovr ! use that value
jmp vgaset
vganorm:test bx,#FLAG_VGA
jz novga
vgaset: seg es
mov 506,ax
novga: push bx ! use flags (BX) later
test bx,#FLAG_LOCK ! ... lock target ?
jnz lockit ! yup -> do it
cmp byte ptr dolock,#0 ! did user ask to lock new target ?
je nolock ! no -> go on
lockit:
#ifndef LCF_READONLY
mov bx,#lkwbuf ! save the command line
seg ss
mov cx,DFCMD_OFF+SSDIFF
seg ss
mov dx,DFCMD_OFF+2+SSDIFF
push es
mov ax,ds
mov es,ax
mov ax,#1
push si
call cwrite
pop si
pop es
#endif
nolock:
#ifdef DEBUG
mov bx,#step3
call say
seg es
#endif
mov cx,#SETUPSECS ! default is to load four sectors
#ifdef LCF_VARSETUP
seg es ! variable number of sectors ?
cmp byte ptr VSS_NUM,#0
je lsetup ! no -> use default
seg es ! use that number
mov cl,VSS_NUM
#endif
lsetup: mov ax,#SETUPSEG ! load the setup (might meet EOF in the
mov es,ax ! process of loading the boot sector of an
xor bx,bx ! other operating system)
lsloop: push cx
call loadopt
pop cx
loop lsloop
#ifdef DEBUG
mov bx,#step4
call say
#endif
pop bx ! get flags
test bx,#FLAG_MODKRN ! "modern" kernel ?
jz loadlow ! no -> avoid all patching and such
seg es ! set loader version
mov byte ptr (16),#LOADER_VERSION
seg es ! version >= 1 ?
cmp word ptr (6),#NEW_HDR_VERSION
jbe noheap ! no -> do not patch heap
seg es ! setup load area size
mov word ptr (36),#SLA_SIZE
seg es ! patch flags
or byte ptr (17),#LFLAG_USE_HEAP
noheap: cmp word ptr (rdmid),#0 ! initial RAM disk ?
je nordpt ! no -> no need to patch header for that
xor al,al ! store RAM disk start address
mov ah,(rdmid)
seg es
mov (24),ax
xchg al,ah
mov al,(rdmid+1)
seg es
mov (26),ax
mov ax,rdszl ! RAM disk size
seg es
mov (28),ax
mov ax,rdszh
seg es
mov (30),ax
nordpt: cmp word ptr (gdt+0x1b),#0 ! load low ?
je loadlow ! yes -> do it
#if 0 /* not necessary ! */
mov ax,(gdt+0x1a) ! load high instead: patch setup header ...
seg es ! start address
mov (20),ax
mov ax,(gdt+0x1c)
xor ah,ah
seg es
mov (22),ax
seg es ! set "high" flag ...
mov byte ptr (17),#LFLAG_HIGH
#endif
xor ax,ax ! GDT is already set up ...
mov es,ax
mov bx,#gdt
call lfile ! load the system ...
jmp launch ! ... and run it
loadlow:call loadfile ! load the system
jmp launch ! go !
loadfile:mov ax,#SYSSEG ! load a file at SYSSEG:0000
mov es,ax
xor bx,bx
lfile: call load
jmp lfile
! Load one sector. Issue an error at EOF.
load1: call loadit ! load the sector
mov bx,#msg_eof ! we only get here at EOF
call say
jmpi restrt,SECONDSEG
loadit: call load ! load it
pop ax ! drop return address of load1
ret
! Load one sector. Start the system at EOF.
loadopt:call loadit ! load the sector
jmp launch ! go
! Load one sequence of sectors. Leave outer function at EOF.
load: push es ! save ES:BX
push bx
lfetch: mov si,moff ! get map offset
mov cx,MAP(si) ! get address
mov dx,MAP+2(si)
mov al,MAP+4(si)
or cx,cx ! at EOF ?
jnz noteof ! no -> go on
or dx,dx
jnz noteof
pop bx ! restore ES:BX
pop es
pop ax ! pop return address
ret ! return to outer function
noteof: add si,#5 ! increment pointer
mov moff,si
cmp si,#508 ! page end ?
jb doload ! no -> load it
mov moff,#0 ! reset pointer
push cs ! adjust ES
pop es
mov bx,#MAP ! load map page
call sread
mov al,#0x2e ! print a dot
call display
jmp lfetch ! try again
! Start the kernel
launch: push es ! save ES:BX (why ???)
push bx
mov bx,#crlf ! display a CRLF
call say
mov dx,#0x3f2 ! stop the floppy motor
xor al,al
outb
xor ax,ax ! reset the FDC
mov dl,al
int 0x13
call remto ! free timer interrupt
mov ax,#INITSEG ! adjust segment registers
mov ds,ax
mov es,ax
jmpi 0,SETUPSEG ! start the setup
! Load one sector (called from load)
doload: pop bx ! restore ES:BX
pop es
! Load a sequence of sectors, possibly moving into "high memory" (> 1 MB)
! afterwards.
xread: push ax ! ES == 0 ?
mov ax,es
or ax,ax
pop ax
jz rdhigh ! yes -> read into high memory
br sread
rdhigh: push bx ! okay - DS:BX points to GDT in this case
mov bx,#SYSSEG ! adjust ES:BX
mov es,bx
xor bx,bx
call sread ! load the sector(s)
pop bx ! get pointer to GDT
push ax ! just in case ...
push cx
push si
mov si,bx ! turn ES:SI into pointer to GDT
mov ax,ds
mov es,ax
xor cx,cx ! number of words to move
mov ch,tempal
#ifdef DEBUG
push si
push bx
push cx
mov al,(si+0x14)
call bout
mov ax,(si+0x12)
call wout
mov bx,#mov_ar
call say
mov al,(si+0x1c)
call bout
mov ax,(si+0x1a)
call wout
mov bx,#mov_sz
call say
pop ax
push ax
call wout
mov bx,#crlf
call say
pop cx
pop bx
pop si
#endif
push bx ! do the transfer. (save BX, CX and SI because
push cx ! we are paranoid)
push si
mov ah,#0x87
int 0x15
pop si
pop cx
pop bx
jc badmov ! failed ...
seg es ! move pointer
add (si+0x1a),cx
seg es
adc byte ptr (si+0x1c),#0
seg es
add (si+0x1a),cx
seg es
adc byte ptr (si+0x1c),#0
sub ax,ax ! put ES back to 0
mov es,ax
pop si
pop cx
pop ax
ret ! done
badmov: push ax ! save the error code
mov bx,#msg_bm ! tell the user ...
br reset ! (standard procedure)
! Load a sequence of sectors
sread: push bx ! save registers
push cx
push dx
mov tempal,al ! save AL
call cread
jc rerror ! error -> complain
pop dx ! restore registers
pop cx
rokay: pop bx
xor ax,ax ! compute offset
mov ah,tempal
add ah,ah
jc dowrap ! loaded an entire segment -> advance ES
add bx,ax ! move BX
jnc nowrap ! same segment -> go on
dowrap: mov ax,es ! move ES
add ax,#0x1000
mov es,ax
nowrap:
aret: ret ! done
! Read error - try a second time and give up if that fails too
rerror: xor ax,ax ! reset the disk
mov dl,al
int 0x13
pop dx ! try again
pop cx
pop bx
push bx
mov al,tempal
call cread
jnc rokay ! okay -> go on
push ax
mov bx,#msg_re ! say something
reset: call say
pop ax ! display the error code
mov al,ah
call bout
mov bx,#crlf ! a CRLF
call say
mov moff,#0 ! restore initial state
jmpi restrt,SECONDSEG
! Convert character in AL to upper case
upcase: cmp al,#0x61 ! lower case character ? ('a')
jb nolower ! no -> go on
cmp al,#0x7a ! 'z'
ja nolower
sub al,#0x20 ! convert to upper case
nolower:ret ! done
! Display a hexadecimal word/byte/nibble
#ifndef xxDEBUG
wout: push ax
mov al,ah
call bout
pop ax
#endif
bout: push ax ! save byte
shr al,#4 ! display upper nibble
call nout
pop ax
nout: and al,#15 ! lower nible only
add al,#48 ! display lower nibble
cmp al,#58 ! convert to ASCII
jb nokay
add al,#7
nokay: br display ! display it
! Display a NUL-terminated string on the console
say: mov al,(bx) ! get byte
or al,al ! NUL ?
jz aret ! yes -> done
push bx ! save pointer
cmp al,#10 ! \n ?
jne nonl ! no -> go on
mov al,#13 ! display a CRLF
call display
mov al,#10
nonl: cmp al,#12 ! ^L ?
jne nocls ! no -> go on
mov ah,#0xf ! clear the local screen
int 0x10
xor ah,ah
int 0x10
jmp snext ! next character
nocls: call display ! display, tty-style
snext: pop bx
inc bx ! next one
jmp say
! Display one character on the console
display:seg cs ! use a serial port ?
cmp slbase,#0
je nodser ! no -> go on
call serdisp
nodser: xor bh,bh ! display on screen
mov ah,#14
int 0x10
ret
serdisp:push dx ! wait for space in the send buffer
push ax
seg cs
mov dx,slbase
add dx,#5
serwait:in al,dx
test al,#0x10 ! break -> set break flag
jz nobrk
seg cs
mov byte ptr break,#1
nobrk: test al,#0x20 ! ready to send ?
jz serwait ! no -> wait
sub dx,#5 ! send the character
pop ax
out dx,al
pop dx ! done
ret
! Get a key (CX = timeout exit)
getkey: seg ss ! set the timeout
mov ax,DSC_OFF-10+SSDIFF
call setto
gwtkey: mov ah,#1 ! is a key pressed ?
int 0x16
jnz gotkey ! yes -> get it
mov dx,slbase ! using a serial port ?
or dx,dx
jz gnokey ! no -> wait
add dx,#5 ! character ready ?
in al,dx
test al,#1
jz gnokey ! no -> wait
sub dx,#5 ! get it
in al,dx
and al,#0x7f ! strip 8th bit
jnz gotch ! ignore NULs
gnokey: test byte ptr timeout,#1 ! timed out ?
jz gwtkey ! no -> wait
pop ax ! discard return address
jmp cx ! jump to timeout handler
gotkey: xor ah,ah ! read a key
int 0x16
push bx ! keyboard translation (preserve BX)
mov bx,#KEYTABLE
xlatb
pop bx
gotch:
#ifdef LCF_ONE_SHOT
seg ss ! always enter prompt ?
cmp byte ptr DSC_OFF+15+SSDIFF,#0
je noosht ! yes -> do not disable timeout
seg ss ! disable timeout
mov DSC_OFF-10+SSDIFF,#0xffff
noosht:
#endif
ret ! done
! Shift wait loop (AX = timeout, returns CY set if interrupred)
waitsh: call setto ! set timeout
actlp: mov ah,#2 ! get shift keys
int 0x16
and al,#0x5f ! anything set ? (except NumLock)
jnz shpress ! yes -> return with CY set
mov dx,slbase ! using a serial port ?
or dx,dx
jz acnosp ! no -> go on
cmp byte ptr break,#0 ! break received ?
jnz shpress ! yes -> return with CY set
add dx,#5 ! check for pending break
in al,dx
test al,#0x10
jnz shpress ! break received -> return with CY set
acnosp: test byte ptr timeout,#1 ! timed out ?
jz actlp ! no -> wait
clc ! clear carry
ret ! done
shpress:stc ! set carry
ret ! done
! Timeout handling
instto: push ds ! install the timeout handler
xor ax,ax
mov ds,ax
cli ! no interrupts
mov ax,[0x1c*4] ! get the old vector
seg cs
mov int1c_l,ax
mov ax,[0x1c*4+2]
seg cs
mov int1c_h,ax
mov [0x1c*4],#tick ! install new vector
mov [0x1c*4+2],cs
sti ! done
pop ds
ret
remto: push es ! remove the interrupt handler
xor ax,ax
mov es,ax
cli
mov ax,int1c_l ! restore the old vector
seg es
mov [0x1c*4],ax
mov ax,int1c_h
seg es
mov [0x1c*4+2],ax
sti ! done
pop es
ret
! AX = ticks, 0xffff = no timeout
setto: or ax,ax ! time out immediately ?
jz toimmed ! yes -> do it
cli ! set timeout value
mov cntdown,ax
mov byte ptr timeout,#0 ! clear timed-out flag
sti ! done
ret
toimmed:mov byte ptr timeout,#0xff ! set the timed-out flag
ret ! done
tick: pushf ! save flags
seg cs ! no timeout ?
cmp cntdown,#0xffff
je notzro ! yes -> go on
seg cs ! decrement counter
dec cntdown
jnz notzro ! not zero -> go on
seg cs ! set timeout flag
mov byte ptr timeout,#0xff
notzro: popf ! done
seg cs
jmpi (int1c_l) ! continue with old interrupt
#ifndef LCF_READONLY
! Sector write
cwrite: mov byte ptr (dsk_cmd),#3 ! set command to write
call cread ! do it
mov byte ptr (dsk_cmd),#2 ! read again
jnc cwok ! no error - return
push ax ! leave no traces
push bx
mov al,#87 ! "W"
push ax ! display clobbers AH
call display
pop ax
mov al,ah ! error code
call bout
pop bx
pop ax
cwok: ret ! done
#endif
! Sector read
tord: br dord ! ...
tolner5:br linerr5 ! ...
cread: test dl,#LINEAR_FLAG ! linear address ?
jz tord ! no -> go on
and dl,#0xff-LINEAR_FLAG ! remove flag
mov t_secs,al ! save number of sectors
lnread: push cx ! keep linear address
push dx
push bx ! BX is used as scratch
push cx ! LSW
push dx ! MSW with drive
mov ah,#8 ! get drive geometry (do not clobber ES:DI)
push es
push di
int 0x13
pop di
pop es
jc tolner5 ! error -> quit
mov al,dh ! AL <- #heads-1
pop dx ! get MSW
mov t_drive,dl ! save drive
mov dl,dh ! linear address (high) into DX
xor dh,dh
push cx ! compute #cyls-1
xchg ch,cl
rol ch,1
rol ch,1
and ch,#3
mov n_cyl,cx ! save #cyls-1
pop cx
and cx,#0x3f ! CX <- #secs
mov n_secs,cx
mul cl ! AX <- #secs/cyl
add ax,cx
xchg ax,bx
pop ax ! linear address (low) into AX
div bx ! DX <- cylinder, AX <- remaining secs
xchg ax,dx
div cl ! AL <- track, AH <- sector
inc ah
mov t_sector,ah
xchg ax,dx ! AX <- cylinder, DL <- track
mov dh,dl ! set up DX (head:drive)
mov dl,t_drive
cmp ax,n_cyl ! valid cylinder number ?
ja linerr3 ! no -> error
xchg ah,al ! build cylinder number
ror al,1
ror al,1
or al,t_sector
mov cx,ax
pop bx ! restore BX
and ax,#0x3f ! read beyond end of track ?
add ax,t_secs
cmp ax,n_secs
jna intrk ! no -> go on
mov al,n_secs ! read to end of track
sub al,t_sector
inc al
jmp lrd ! read it
intrk: mov al,t_secs ! read all sectors
lrd: push ax ! save AX and BX
push bx
call dord ! read the sector(s)
pop bx ! restore AX and BX and the linear address
pop ax
pop dx
pop cx
jc linerr ! error -> quit
sub t_secs,al ! adjust sector count
jz lindone ! zero -> done
xor ah,ah ! increase linear address
add cx,ax
adc dh,#0
xchg ah,al ! move BX
add ah,ah
add bx,ax
jc interr ! crossing segment boundaries -> error
br lnread ! process remaining sectors
linerr5:pop dx ! discard stack contents
pop cx
pop bx
pop dx
pop cx
ret ! (carry is already set)
linerr3:pop bx ! pop BX and linear address
pop dx
pop cx
interr: xor ax,ax ! zero indicates internal error
linerr: stc ! error
ret
lindone:clc ! no error
ret ! done
dord: seg cs ! set command
mov ah,(dsk_cmd)
#ifdef DBG_LREAD
push ax
push bx
push cx
push dx
push es
push dx
push cx
push bx
push ax
mov bx,#sax
call say
pop ax
call wout
mov bx,#sbx
call say
pop ax
call wout
mov bx,#scx
call say
pop ax
call wout
mov bx,#sdx
call say
pop ax
call wout
mov bx,#ses
call say
pop ax
call wout
mov bx,#sdone
call say
pop dx
pop cx
pop bx
pop ax
#endif
int 0x13 ! read or write
ret
dsk_cmd:.byte 2 ! read
n_cyl: .word 0 ! temporary space
n_secs: .word 0
t_drive:.byte 0
t_sector:.byte 0
t_secs: .word 0
! Put tokens into keyboard buffer
putkbd: add si,#4 ! skip over "kbd="
push es
xor ax,ax ! set ES to zero
mov es,ax
pknext: lodsb ! get next byte
or al,al ! NUL ?
jz pkdone ! yes -> done
cmp al,#32 ! blank ?
jne pkrd ! no -> read scan code
pkdone: dec si ! return last character
pop es ! done
ret
pkrd: xor cx,cx ! clear accumulator
pkrdlp: cmp al,#97 ! lower case character ?
jb pknol ! no -> go on
sub al,#32 ! make upper case
pknol: sub al,#48 ! normalize
cmp al,#10 ! >"9" ?
jb pkok ! no -> okay
cmp al,#17 ! <"A" ?
jb pksyn ! yes -> syntax error
sub al,#7 ! adjust
cmp al,#16 ! >"F" ?
jae pksyn ! yes -> syntax error
pkok: shl cx,1 ! shift CX
jc pksyn ! carry means trouble
shl cx,1
jc pksyn
shl cx,1
jc pksyn
shl cx,1
jc pksyn
add cl,al ! put in lowest nibble
lodsb ! get next byte
or al,al ! NUL ?
jz pkend ! yes -> at end
cmp al,#32 ! space ?
je pkend ! yes -> at end
cmp al,#44 ! comma ?
je pkmore ! yes -> end of token
jmp pkrdlp ! token continues
pksyn: mov bx,#msg_pks ! complain
call say
pkfls: lodsb ! flush to end of option
or al,al
jz pkdone
cmp al,#32
je pkdone
jmp pkfls
pkend: call pkput ! store token
jmp pkdone ! ... and return
pkmore: call pkput ! store token
jmp pknext ! handle next token
pkput: seg es ! get buffer pointer
mov bx,[KBEND]
mov dx,bx
add dx,#2 ! increment it
cmp dx,#KBHIGH ! (wrap around end)
jb pknadj
mov dx,#KBLOW
pknadj: seg es ! buffer full ?
cmp dx,[KBBEG]
je pkfull ! yes -> error
seg es ! store scan code
mov (bx+0x400),cx
seg es ! store new pointer
mov [KBEND],dx
ret ! done
pkfull: mov bx,#msg_pkf ! complain
call say
pop ax ! discard return address
br pkfls ! abort
! Set VGA mode
setvga: add si,#4 ! skip over "vga="
push si ! save SI
mov bx,#vgatab ! scan VGA table
svgatb: pop si ! get pointer to option value
push si
mov cx,(bx) ! get VGA code
or cx,cx ! at end ?
jz vganum ! yes -> must be numeric
add bx,#2 ! compare the strings
vgacmp: lodsb
call upcase ! (case-insensitive)
mov ah,(bx)
inc bx
or ah,ah ! at end ?
jnz vgamore ! no -> go on
or al,al ! at end of line ?
jz vgafnd ! yes -> found it
cmp al,#32 ! space ?
je vgafnd ! yes -> found it
jmp svgatb ! try next entry otherwise
vgamore:cmp al,ah
je vgacmp ! equal -> next character
vgaskp: mov al,(bx) ! skip to end of reference string
inc bx
or al,al
jnz vgaskp
jmp svgatb ! try next entry
vgafnd: pop ax ! drop SI
vgaput: mov vgaovr,cx ! set VGA mode
dec si ! read last character again
clc ! okay, done
ret
vganum: pop si ! get SI
xor cx,cx
mov ah,cl
test byte ptr (si),#0xff ! no value ?
jz vgaerr ! yes -> error
vgadig: lodsb ! get the next character
or al,al ! at end ?
jz vgaput ! yes -> done
cmp al,#32
je vgaput
cmp al,#48 ! is it a digit ?
jb vgaerr ! no -> error
cmp al,#57
ja vgaerr
sub al,#48 ! cx = cx*10+al-'0'
mov bx,cx
shl cx,1
shl cx,1
add cx,bx
shl cx,1
add cx,ax
jnc vgadig ! next one
vgaerr: mov bx,#msg_v ! display an error message
call say
stc ! return an error
ret
vgatab:
#ifdef NORMAL_VGA
.word ASK_VGA
.ascii "ASK"
.byte 0
.word EXTENDED_VGA
.ascii "EXTENDED"
.byte 0
.word EXTENDED_VGA
.ascii "EXT"
.byte 0
.word NORMAL_VGA
.ascii "NORMAL"
.byte 0
#endif
.word 0
! Set memory limit
getmem: cmp byte ptr (si+4),#0x6e ! 'n' like 'nopentium' ?
jne mlreal ! no -> proceed
ret ! nice try
mlreal: push si ! save SI for copying
add si,#4 ! advance SI to beginning of number
call strtoul ! get number in DX:AX
#if 0
push ax
push dx
push ax
mov ax,dx
call wout
pop ax
call wout
pop dx
pop ax
#endif
mov bl,(si) ! get next character
cmp bl,0x4b ! 'K' or 'k' ?
je mlthis ! yes -> do not change
cmp bl,#0x6b
je mlthis
mov cx,#10 ! divide or multiply by 2^10
cmp bl,#0x4d ! 'M' or 'm' ?
je mlmul ! yes-> multiply
cmp bl,#0x6d
je mlmul
cmp byte ptr (si),#0 ! NUL ?
je mldivl ! yes -> divide
cmp byte ptr (si),#32
je mldivl ! yes -> divide
br s2lbad ! trouble
mldivl: shr dx,1 ! shr DX:AX,1
rcr ax,1
loop mldivl ! ten times
jmp mlthis ! done
mlmul: or dx,dx ! too big already ?
jnz mlbig ! yes -> set to 0xffff
mlmull: shl ax,1 ! shl DX:AX,1
rcl dx,1
loop mlmull ! ten times
mlthis: or dx,dx ! too big ?
jz mlnbig ! no -> use AX
mlbig: mov ax,#0xffff ! use maximum
mlnbig: mov memlim,ax ! set memory limit
pop si ! restore SI
ret ! done
strtoul:xor ax,ax ! count in DX:AX
xor dx,dx
mov cl,#10 ! default base is 10
cmp byte ptr (si),#48 ! '0' ?
jne s2ldec ! no -> decimal
mov cl,#16 ! use hex (we do not support octal ...)
add si,#2 ! skip '0x'
cmp byte ptr (si-1),#0x58 ! 'X' ?
je s2ldec ! yes -> okay
cmp byte ptr (si-1),#0x78 ! 'x' ?
jne s2lbad ! no -> trouble
s2ldec: mov bl,(si) ! get the next byte
cmp bl,#48 ! a decimal digit ?
jb s2ldone ! no -> return
cmp bl,#58 ! a decimal digit ?
jb s2lok ! yes -> proceed
cmp cl,#16 ! are we using hex ?
jne s2ldone ! no -> return
and bl,#0xdf ! turn into upper case
cmp bl,#0x41 ! a hex digit ?
jb s2ldone ! no -> return
cmp bl,#0x46 ! a hex digit ?
ja s2ldone ! no -> return
sub bl,#7 ! adjust
s2lok: inc si ! advance pointer to string
sub bl,#48 ! zero-based
shl ax,1 ! shl DX:AX,1
rcl dx,1
jc s2lbad ! overflow -> trouble
cmp cl,#16 ! hex ?
je s2lhex ! yes -> *8
push dx ! push DX:AX
push ax
shl ax,1 ! shl DX:AX,1
rcl dx,1
jc s2lbad
shl ax,1 ! shl DX:AX,1
rcl dx,1
jc s2lbad
pop bp ! add DX:AX from stack
add ax,bp
pop bp
adc dx,bp
jc s2lbad
s2ladd: xor bh,bh ! add BX
add ax,bx
adc dx,#0
jnc s2ldec ! no overflow -> next character
s2lbad: mov bx,#msg_s2l ! complain
call say
jmpi restrt,SECONDSEG ! start over again
s2ldone:ret
s2lhex: shl ax,1 ! shl DX:AX,1
rcl dx,1
jc s2lbad
shl ax,1 ! shl DX:AX,1
rcl dx,1
jc s2lbad
shl ax,1 ! shl DX:AX,1
rcl dx,1
jc s2lbad
jmp s2ladd ! add now
msg_s2l:.byte 10
.ascii "Invalid number"
.byte 10,0
! GDT for "high" loading
gdt: ! space for BIOS
.blkb 0x10
! source
.word 0xffff ! no limits
.word 0 ! start: 0x10000
.byte 1
.byte 0x93 ! permissions
.word 0 ! padding for 80286 mode :-(
! destination
.word 0xffff ! no limits
.word 0 ! start - filled in by user
.byte 0
.byte 0x93 ! permissions
.word 0 ! padding for 80286 mode :-(
! space for BIOS
.blkb 0x10
! Some messages
msg_p: .ascii "boot: "
.byte 0
msg_l: .ascii "Loading "
.byte 0
msg_re: .byte 10
.ascii "Error 0x"
.byte 0
msg_nf: .ascii "No such image. [Tab] shows a list."
.byte 10,0
msg_int:.byte 10
.ascii "*Interrupted*"
.byte 10,0
msg_eof:.byte 10
.ascii "Unexpected EOF"
.byte 10,0
msg_pw: .ascii "Password: "
.byte 0
msg_pf: .ascii "Sorry."
.byte 10,0
msg_v: .byte 10
.ascii "Valid vga values are ASK, NORMAL, EXTENDED or a "
.ascii "decimal number."
.byte 10,0
msg_pks:.byte 10
.ascii "Invalid hexadecimal number. - Ignoring remaining items."
.byte 10,0
msg_pkf:.byte 10
.ascii "Keyboard buffer is full. - Ignoring remaining items."
.byte 10,0
msg_bm: .byte 10
.ascii "Block move error 0x"
.byte 0
msg_rd: .byte 10
.ascii "Not enough memory for RAM disk"
.byte 10,0
ospc: .ascii "O"
#ifdef LCF_BEEP
.byte 7
#endif
.byte 32,0
crlf: .byte 10,0
bs: .byte 8,32,8,0
#ifdef DEBUG
stepa: .ascii " RAM disk,"
.byte 0
step0: .ascii " map page,"
.byte 0
step0b: .ascii " fallback,"
.byte 0
step1: .ascii " options,"
.byte 0
step1b: .ascii " fallback,"
.byte 0
step2: .ascii " boot,"
.byte 0
step3: .ascii " setup,"
.byte 0
step4: .ascii " system "
.byte 0
sax: .ascii "AX="
.byte 0
sbx: .ascii " BX="
.byte 0
scx: .ascii " CX="
.byte 0
sdx: .ascii " DX="
.byte 0
ses: .ascii " ES="
.byte 0
sdone: .byte 10
.byte 0
mov_ar: .ascii " -> "
.byte 0
mov_sz: .ascii ", words "
.byte 0
#endif
tempal: .byte 0
moff: .word 0 ! map offset
cntdown:.word 0 ! count-down
timeout:.byte 0 ! timed out
int1c_l:.word 0 ! old timer interrupt
int1c_h:.word 0
old_del:.word 0 ! delay before booting
nodfl: .word 0 ! action if no defaults are present
slbase: .word 0 ! serial port base (or 0 if unused)
break: .byte 0 ! break received flag
usrinpm:.byte UI_MAGIC
cmdbeg: .word 0
options:.word 0
rdmid: .word 0 ! RAM disk address, "middle" part
rdszl: .word 0 ! RAM disk size
rdszh: .word 0
vgaovr: .word 0 ! VGA mode overwrite
memlim: .word 0 ! memory limit
dskprm: .word 0,0,0,0,0,0
lkwbuf: .word DC_MAGIC
lkcbuf: .blkb 256
dolock: .byte 0
acmdbeg:.ascii "auto "
mcmdbeg:.ascii "BOOT_IMAGE"
prechr: .byte 32 ! space: guard double blank supression
! equal sign: variable assignment
cmdline:.byte 0
|