mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-10 21:21:51 +09:00
making bootloader to load the dos kernel to run a shell
This commit is contained in:
17
assets/bootsec_source.js
Normal file
17
assets/bootsec_source.js
Normal file
@@ -0,0 +1,17 @@
|
||||
// load TVDOS.SYS
|
||||
let p = _BIOS.FIRST_BOOTABLE_PORT;
|
||||
com.sendMessage(p[0], 'OPENR"tvdos/TVDOS.SYS",'+p[1]);
|
||||
let r = com.getStatusCode(p[0]);
|
||||
if (r == 0){
|
||||
com.sendMessage(p[0], "READ");
|
||||
r = com.getStatusCode([0]);
|
||||
if (r == 0) {
|
||||
let g=com.pullMessage(p[0]);
|
||||
eval(g);
|
||||
0;
|
||||
}
|
||||
else
|
||||
println("I/O Error");
|
||||
}
|
||||
else
|
||||
println("TVDOS.SYS not found");
|
||||
Reference in New Issue
Block a user