?? fp.compile
字號:
#!/bin/sh# Author: Kees J. Bot# Compile one soft FP source file.# (These files shouldn't be optimized normally, but the 16-bit C compiler# only optimizes scratch register allocation a bit with -O. To the 32-bit# compiler -O is a no-op.)case $#:$2 in2:*.fc) ;;*) echo "$0: $1: not a FC file" >&2; exit 1esacdst=$1src=$2base="`basename "$src" .fc`"trap 'rm -f tmp.c tmp.s"; exit 1' 2cp "$src" tmp.c &&cc -O -I. -D_MINIX -D_POSIX_SOURCE -S tmp.c &&sed -f FP.script tmp.s > "$base.s" &&cc -c -o $dst "$base.s" &&rm tmp.c tmp.s
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -