diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-11-20 23:28:17 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-11-20 23:28:17 +0100 |
| commit | a822afc278e7855dea55bcd0de2e402d5bf43508 (patch) | |
| tree | 3ce639618b5548389096e5e340a36025e0371af7 /boot1 | |
| parent | b9af856ae4a65e09b401cdbc7858c6cd4b1b0b5f (diff) | |
fixed loading and runnnng progs (clear bss)
Diffstat (limited to 'boot1')
| -rw-r--r-- | boot1/disk_load_16.asm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/boot1/disk_load_16.asm b/boot1/disk_load_16.asm index 76102ad..6d1e4b3 100644 --- a/boot1/disk_load_16.asm +++ b/boot1/disk_load_16.asm @@ -8,7 +8,7 @@ STR_LBA: db "LBA Support Detected",0 STR_CHS: - db "CHS BROKEN SORRY(?)",0 + db "No CHS Support!)",0 STR_ERROR: db "Disk Read Error",0 @@ -50,6 +50,7 @@ disk_load_chs: mov bx, STR_CHS call print_string call print_nextline + jmp $ mov bx,0 ;target es:bx mov es,bx |
