?? fir.cmd
字號:
/*
* Spectrum Digital Test code
* Copyright (c) 1997.
* Spectrum Digital, Inc
* ALL RIGHTS RESERVED
*/
/*
* The memory mapping in this file should match the mapping in the
* EMUINIT.CMD file in the load directory
*/
/* linker commands */
-c /* ROM autoinitialization */
-x /* force rereading libraries */
-o fir.out /* output file */
-m fir.map /* map file */
/* specify memory map */
MEMORY
{
PAGE 0 : /* program memory */
VECS: origin = 00000h, length = 0003Fh
CODE: origin = 00040h, length = 00DC0h
PAGE 1 : /* data memory */
Ext_Ram : origin = 08000h, length = 01000h
}
/* specify sections */
SECTIONS
{
vectors : > VECS PAGE = 0
.text : > CODE PAGE = 0
.switch : > CODE PAGE = 0
.data : > Ext_Ram PAGE = 1
.bss : > Ext_Ram PAGE = 1
.heap : > Ext_Ram PAGE = 1
.stack : > Ext_Ram PAGE = 1
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -