#1# Copyright (c) 1998 Robert Nordier2# All rights reserved.3#4# Redistribution and use in source and binary forms are freely5# permitted provided that the above copyright notice and this6# paragraph and the following disclaimer are duplicated in all7# such forms.8#9# This software is provided "AS IS" and without any express or10# implied warranties, including, without limitation, the implied11# warranties of merchantability and fitness for a particular12# purpose.13#1415#16# BTX system calls.17#1819#20# Globals.21#22.global __exit23.global __exec24#25# Constants.26#27.set INT_SYS,0x30 # Interrupt number28#29# System call: exit30#31__exit: xorl %eax,%eax # BTX system32int $INT_SYS # call 0x033#34# System call: exec35#36__exec: movl $0x1,%eax # BTX system37int $INT_SYS # call 0x1383940