hello.cmd
来自「关于dsp中bios的基本应用」· CMD 代码 · 共 40 行
CMD
40 行
/* * Copyright 2001 by Texas Instruments Incorporated. * All rights reserved. Property of Texas Instruments Incorporated. * Restricted rights to use, duplicate or disclose this code are * granted through contract. *//* * ======== hello.cmd ======== * */MEMORY { DATA(RWI): origin = 0x6000, len = 0x4000 PROG: origin = 0x200, len = 0x5e00 VECT: origin = 0xd000, len = 0x100}SECTIONS{ .vectors: {} > VECT .trcinit: {} > PROG .gblinit: {} > PROG frt: {} > PROG .text: {} > PROG .cinit: {} > PROG .pinit: {} > PROG .sysinit: {} > PROG .bss: {} > DATA .far: {} > DATA .const: {} > DATA .switch: {} > DATA .sysmem: {} > DATA .cio: {} > DATA .MEM$obj: {} > DATA .sysheap: {} > DATA .sysstack {} > DATA .stack: {} > DATA}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?