]> git.sur5r.net Git - cc65/blobdiff - libsrc/common/_cwd.s
Merge pull request #369 from groessler/something_to_pull
[cc65] / libsrc / common / _cwd.s
index a3ee362f6438f5cae12943ce73d6828d59f26a13..92276ead990e228687376b5a1015d79923b2d768 100644 (file)
@@ -7,21 +7,21 @@
 ; by the constructor defined in this module.
 ;
 
-               .export         __cwd
+        .export         __cwd
         .export         __cwd_buf_size
         .constructor    cwd_init
 
         .import         initcwd
 
         .include        "stdio.inc"
-                                      
+
         __cwd_buf_size  = FILENAME_MAX
 
         cwd_init        := initcwd
 
-.bss
+.segment        "INIT"
 
-__cwd:  .res   __cwd_buf_size
+__cwd:  .res    __cwd_buf_size
 
 
 ; NOTE: Some of the code working with directories is not able to handle
@@ -29,4 +29,3 @@ __cwd:  .res  __cwd_buf_size
 ; checking the other sources.
 
         .assert __cwd_buf_size < 256, error, "__cwd_buf_size must not be > 255"
-