Palacios Public Git Repository

To checkout Palacios execute

  git clone http://v3vee.org/palacios/palacios.web/palacios.git
This will give you the master branch. You probably want the devel branch or one of the release branches. To switch to the devel branch, simply execute
  cd palacios
  git checkout --track -b devel origin/devel
The other branches are similar.


minor test kernel updates
[palacios.git] / test / geekos_test_vm / src / geekos / fd_boot.asm
index d5fa120..ad01ab8 100644 (file)
@@ -151,9 +151,9 @@ load_kernel:
        push    bx
        push    es              ;
 
-       mov     dx, cs
-       call    PrintHex
-       call    PrintNL
+;      mov     dx, cs
+;      call    PrintHex
+;      call    PrintNL
 
        push    cs
        pop     es
@@ -166,32 +166,32 @@ load_kernel:
        shl     cx, 8                           ; multiply by 9-1 to get number of bytes / 2 (words)
 
        ;; Print out the size of the kernel
-       mov     dx, cx  
-       call    PrintHex
-       call    PrintNL
+;      mov     dx, cx  
+;      call    PrintHex
+;      call    PrintNL
 
        int     0x15
        
        adc     ax, 0
 
        ;; Print out the return code to the screen
-       mov     dx, ax  
-       call    PrintHex
-       call    PrintNL
+;      mov     dx, ax  
+;      call    PrintHex
+;      call    PrintNL
 
-       mov     dx, KERNSEG
-       call    PrintHex
-       call    PrintNL
+;      mov     dx, KERNSEG
+;      call    PrintHex
+;      call    PrintNL
 
-       mov     dx, SETUPSEG
-       call    PrintHex
-       call    PrintNL
+;      mov     dx, SETUPSEG
+;      call    PrintHex
+;      call    PrintNL
 
 
 
-       mov     dx, 0x4a4a
-       call    PrintHex
-       call    PrintNL
+;      mov     dx, 0x4a4a
+;      call    PrintHex
+;      call    PrintNL
 
        pop     es              ;
        pop     bx