[movitz-cvs] CVS update: movitz/bootblock.lisp

Frode Vatvedt Fjeld ffjeld at common-lisp.net
Mon Jan 19 10:36:13 UTC 2004


Update of /project/movitz/cvsroot/movitz
In directory common-lisp.net:/tmp/cvs-serv15076

Modified Files:
	bootblock.lisp 
Log Message:
Bootloader now doesn't load past the image. On physical floppies this
makes no difference, but for VMWare and possibly also VirtualPC it does.

Date: Mon Jan 19 05:36:13 2004
Author: ffjeld

Index: movitz/bootblock.lisp
diff -u movitz/bootblock.lisp:1.5 movitz/bootblock.lisp:1.6
--- movitz/bootblock.lisp:1.5	Fri Jan 16 10:40:35 2004
+++ movitz/bootblock.lisp	Mon Jan 19 05:36:12 2004
@@ -9,7 +9,7 @@
 ;;;; Created at:    Mon Oct  9 20:47:19 2000
 ;;;; Distribution:  See the accompanying file COPYING.
 ;;;;                
-;;;; $Id: bootblock.lisp,v 1.5 2004/01/16 15:40:35 ffjeld Exp $
+;;;; $Id: bootblock.lisp,v 1.6 2004/01/19 10:36:12 ffjeld Exp $
 ;;;;                
 ;;;;------------------------------------------------------------------
 
@@ -118,7 +118,7 @@
        ;; Read sectors into memory
        ;;
        
-       (:movw ,(+ 1 skip-sectors) (:bp ,+linear-sector+))
+       (:movw ,first-sector (:bp ,+linear-sector+))
        (:movl ,load-address (:bp ,+destination+))
 
        read-loop
@@ -143,6 +143,12 @@
        (:subb :cl :al)			; number of sectors (rest of track)
        (:incb :cl)
        (:addw :ax (:bp ,+linear-sector+)) ; update read pointer
+       (:movw (:bp ,+linear-sector+) :bx) ; subtract some if it's the last track.
+       (:subw ,last-sector :bx)
+       (:jc 'subtract-zero-sectors)
+       (:subw :bx :ax)
+       (:jz 'read-done)
+       subtract-zero-sectors
        (:movb 2 :ah)
 
        (:movw ,read-buffer-segment :bx)





More information about the Movitz-cvs mailing list