?? fp.compile
字號(hào):
#!/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 $#:$1 in1:*.fc) ;;*) echo "$0: $1: not a FC file" >&2; exit 1esacbase="`basename "$1" .fc`"trap 'rm -f tmp.c tmp.s"; exit 1' 2cp "$1" tmp.c &&cc -O -I. -D_MINIX -D_POSIX_SOURCE -S tmp.c &&sed -f FP.script tmp.s > "$base.s" &&rm tmp.c tmp.s
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -