diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-09-02 14:53:09 +0200 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-09-02 14:53:09 +0200 |
| commit | 5348a94a6e7a16a070c502c29db30a08253a99a3 (patch) | |
| tree | a60838ee9c4b7ac854084fe0eeb0e579a5afc33d /boot/disk_load_16.asm | |
| parent | 347ee926fd09d7fb45025f2c4e4a4eeab83459c9 (diff) | |
Debugging paging problem on VirtualBox (VT-x)
Diffstat (limited to 'boot/disk_load_16.asm')
| -rw-r--r-- | boot/disk_load_16.asm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/boot/disk_load_16.asm b/boot/disk_load_16.asm index 4222dd9..e45b89a 100644 --- a/boot/disk_load_16.asm +++ b/boot/disk_load_16.asm @@ -7,8 +7,8 @@ [bits 16] -DISK_LOAD_HANG_MSG: - db " D",0 +DISK_LOAD: + db "D",0 ;disk_load routune (load dh sectors from drive dl to es:bx) ;lba mode has 52 sectors hardcoded! @@ -48,10 +48,8 @@ disk_load_lba: lea si,[lba_adr] int 0x13 jc skip_print - - mov bx, 0x1000 + mov bx, DISK_LOAD call print_string - skip_print: popa |
