stack.s
来自「sdcc是为51等小型嵌入式cpu设计的c语言编译器支持数种不同类型的cpu」· S 代码 · 共 32 行
S
32 行
;; stack.S - automatically allocate stack for PIC16 targets; with out the need for using the #pragma stack; directive;; written by Vangelis Rokas, 2006 <vrokas AT users.sourceforge.net>;;; $Id$;; object will only be used if and only if #pragma stack is not; defined in one of the projet's sources radix dec;--------------------------------------------------------; public variables in this module;-------------------------------------------------------- global _stack global _stack_end; allocate space for stackstack_section udata 0x0200_stack res 63_stack_end res 1 end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?