* device/include/pic16/pic18f2450.h,
[fw/sdcc] / device / lib / pic16 / libsdcc / stack / stack.S
index 2f9c39bffa471bec0df1f6a6f217c41dd411c14d..6f6db36fd35aab90200747a27239002eaabce89d 100644 (file)
@@ -1,5 +1,3 @@
-
-
 ;
 ; stack.S - automatically allocate stack for PIC16 targets
 ;           with out the need for using the #pragma stack
@@ -7,25 +5,20 @@
 ;
 ; 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
+        radix dec
 
 ;--------------------------------------------------------
 ; public variables in this module
 ;--------------------------------------------------------
-       global _stack
-       global _stack_end
-
+        global _stack
+        global _stack_end
 
 ; allocate space for stack
-stack_section  udata   0x0200
-_stack         res     0xff
-_stack_end     res     1
+stack_section   udata
+_stack          res     0xff
+_stack_end      res     1
 
-       end
+        end