Home
       0002-z80-u.sh - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0002-z80-u.sh (173B)
       ---
            1 #!/bin/sh
            2 
            3 set -e
            4 
            5 tmp1=`mktemp`
            6 tmp2=`mktemp`
            7 trap "rm -f $tmp1 $tmp2; exit" 0 2 3
            8 
            9 scc-nm -u z80.out > $tmp1
           10 
           11 cat <<! > $tmp2
           12                  U text6
           13 !
           14 
           15 diff $tmp1 $tmp2