diff options
author | Michael I. Bushnell <mib@gnu.org> | 1993-11-03 21:16:23 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1993-11-03 21:16:23 +0000 |
commit | d7d6835d9314719a64d4e62f2fc1ee797838de6a (patch) | |
tree | 8afaa57cd54c31232466b7cf5bb3342b8dad3de1 /boot | |
parent | 50d77a54e4e20b7cb211efac8d54cda2c2635e96 (diff) |
entered into RCS
Diffstat (limited to 'boot')
-rw-r--r-- | boot/syscall.S | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/boot/syscall.S b/boot/syscall.S index 1145c8c8..ab392c9e 100644 --- a/boot/syscall.S +++ b/boot/syscall.S @@ -19,13 +19,14 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Written by Michael I. Bushnell. */ -#include <sysdep.h> - /* This does not handle errors */ -ENTRY(syscall) +.text + .globl _syscall + .align 4 +_syscall: pop %ecx pop %eax push %ecx - .byte 0x9a, 0, 0, 0, 0, 7 0; + .byte 0x9a, 0, 0, 0, 0, 7, 0 ret |