9os

Experimental kernel using plan9 ideas for embedded device
git clone git://git.simple-cc.org/9os
Log | Files | Refs | README | LICENSE

gensys.sh (332B)


      1 #!/bin/sh
      2 
      3 #
      4 # This job is very easy because app and kernel ABI are identical
      5 # until the 4th parameter, so we only have to set the syscall
      6 # number in rax
      7 
      8 sed 's/[ 	]*#.*//
      9      /^$/d' syscall.lst |
     10 while read num name
     11 do
     12 cat <<EOF > $name.s
     13 	.file	"$name.s"
     14 
     15 	.globl	$name
     16 $name:
     17 	movq	\$$num,%rax
     18 	syscall
     19 	jmp	_cerrno
     20 EOF
     21 done