📄 makefile
字号:
CC = ../../../../bin/sdccMFLAGS = -mds400LFLAGS = --xram-loc 0x10000 --code-loc 0x400000 -Wl-rOBJECTS = hello.relall: hello.hexclean: rm -f *~ \#* *.asm *.cdb *.rel *.hex *.ihx *.lst *.map *.rst *.sym *.lnkhello.hex: hello.ihx packihx hello.ihx >hello.hexhello.ihx: $(OBJECTS) $(CC) $(MFLAGS) $(LFLAGS) $(OBJECTS)%.rel: %.c $(CC) -c $(MFLAGS) $<
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -