diff options
author | H. Peter Anvin <hpa@zytor.com> | 2006-05-03 17:32:15 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2006-05-03 17:32:15 -0700 |
commit | 28eecd8965aedbd75727fb0797a2e7033d5c54ee (patch) | |
tree | 1cac9ffc5f7fe7fd82d59b4accd7b8cf85762f74 /loadhigh.inc | |
parent | f8c463722022008c8412a69f90576d2bf38818ed (diff) | |
download | syslinux-28eecd8965aedbd75727fb0797a2e7033d5c54ee.tar.gz |
Across-the-board stealth whitespace cleanup
Diffstat (limited to 'loadhigh.inc')
-rw-r--r-- | loadhigh.inc | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/loadhigh.inc b/loadhigh.inc index 0eef6858..07e810a3 100644 --- a/loadhigh.inc +++ b/loadhigh.inc @@ -1,6 +1,6 @@ ;; $Id$ ;; ----------------------------------------------------------------------- -;; +;; ;; Copyright 1994-2002 H. Peter Anvin - All Rights Reserved ;; ;; This program is free software; you can redistribute it and/or modify @@ -13,7 +13,7 @@ ;; ;; loadhigh.inc -;; +;; ;; Load a file into high memory ;; @@ -23,7 +23,7 @@ ; load_high: loads (the remainder of) a file into high memory. ; This routine prints dots for each 64K transferred, and ; calls abort_check periodically. -; +; ; The xfer_buf_seg is used as a bounce buffer. ; ; The input address (EDI) should be dword aligned, and the final @@ -68,7 +68,7 @@ load_high: call getfssec ; Load the data into xfer_buf_seg pop edi ; <C> Target buffer pop ecx ; <B> Byte count this round - push ecx ; <B> Byte count this round + push ecx ; <B> Byte count this round push edi ; <C> Target buffer .fix_slop: test cx,dx @@ -89,8 +89,7 @@ load_high: add edi,ecx sub eax,ecx jnz .read_loop ; More to read... - + .eof: pop es ret - |