Patch from Emmanuel Raguet <raguet@crf.canon.fr> which corrects the following

problems:

  - unclosed comment in pc386/start/start16.S
  - bad #endif in pc386/startup/ldseg.S
This commit is contained in:
Joel Sherrill
2000-01-07 14:52:48 +00:00
parent 0ff37e6866
commit c3538f33cc
2 changed files with 5 additions and 5 deletions

View File

@@ -141,14 +141,14 @@ _start16:
delay: delay:
_delay: _delay:
/* /*
outb %al, $0xED # about 1uS delay on most machines outb %al, $0x80 # about 1uS delay on most machines
*/ */
/* /*
movl $0x200, %eax movl $0x200, %eax
delay1: delay1:
dec %eax dec %eax
jnz delay1 jnz delay1
*/
ret ret
/*----------------------------------------------------------------------------+ /*----------------------------------------------------------------------------+

View File

@@ -78,8 +78,8 @@ _delay:
delay1: delay1:
dec eax dec eax
jnz delay1 jnz delay1
ret
#endif #endif
ret
/*-------------------------------------------------------------------------+ /*-------------------------------------------------------------------------+
| Function: _load_segments | Function: _load_segments