]> git.sur5r.net Git - cc65/blobdiff - libsrc/lynx/lynx-comlynx.s
The spans do now contain the size of a span, no longer the end offset.
[cc65] / libsrc / lynx / lynx-comlynx.s
index 8b55e93227898190cb8fe00bdd1aadff56cecddc..d2aae7a0a19ff0be7878460be0e83a820ebcec2d 100644 (file)
 ;----------------------------------------------------------------------------
 ; Global variables
 ;
-; The ring buffers will be at the fixed place
-; Tx buffer $200 - $2ff. Rx buffer $300 - $3ff.
-; This memory area can usually not be used for anything as the encryption
-; stuff needs it. But for this purpose it fits perfectly.
 
        .bss
 
-TxBuffer = $0200
-RxBuffer = $0300
+TxBuffer:      .res    256
+RxBuffer:      .res    256
 RxPtrIn:       .res    1
 RxPtrOut:      .res    1
 TxPtrIn:       .res    1