📄 makefile
字号:
# sample make file for building vwfd virtual device for Microsoft Windows
# comment this definition out with a "#", if building a non-debugging version
Debug=-DDEBUG
all : vwfd.386 tstwf.exe
.asm.obj:
masm5 -p -w2 -Mx $(Debug) -I..\include $*;
.asm.lst:
masm5 -l -p -w2 -Mx $(Debug) -I..\include $*;
tstwf.obj: tstwf.asm vwfd.inc
tstwf.exe: tstwf.obj
link tstwf.obj;
vwfd.obj : vwfd.asm ..\include\vdd.inc \
..\include\debug.inc \
..\include\vmm.inc
OBJS = vwfd.obj
vwfd.386: vwfd.def $(OBJS)
link386 @vwfd.lnk
addhdr vwfd.386
mapsym32 vwfd
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -