From 34ae2440d7cd133051523bce2aac0760cf8296eb Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Wed, 25 Apr 2018 02:44:31 +0300 Subject: [PATCH] commented out debug print of the first 32bits of each track loaded --- src/boot/boot2.s | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/boot/boot2.s b/src/boot/boot2.s index 6372557..5422c0b 100644 --- a/src/boot/boot2.s +++ b/src/boot/boot2.s @@ -196,10 +196,11 @@ ldloop: push %ecx call read_track - mov buffer, %eax - call print_num - mov $10, %al - call putchar + # debug: print the first 32bits of the track + #mov buffer, %eax + #call print_num + #mov $10, %al + #call putchar # copy to high memory mov $buffer, %esi -- 1.7.10.4