]> git.sur5r.net Git - cc65/blob - libsrc/common/_cwd.s
Added an IRQ vector
[cc65] / libsrc / common / _cwd.s
1 ;
2 ; Ullrich von Bassewitz, 2003-08-12
3 ;
4 ; Place to store the current working directory.
5 ; NOTE: Some of the code working with directories is not able to handle 
6 ; strings longer than 255 chars, so don't make __cwd_buf_size larger than 256
7 ; without checking the other sources.
8
9         .export         __cwd
10         .export         __cwd_buf_size
11
12         __cwd_buf_size  = 64
13
14 .bss
15
16 __cwd:  .res    __cwd_buf_size
17
18