]> git.sur5r.net Git - cc65/blobdiff - src/cc65/coptpush.h
Add support for computed gotos
[cc65] / src / cc65 / coptpush.h
index 0cd01dde8374d4c119de61f452913c47abc918dd..0d637e8245dad738371b5a7be8dd3e4ce3312a8b 100644 (file)
 
 unsigned OptPush1 (CodeSeg* S);
 /* Given a sequence
- *
- *     ldy     #xx
- *     jsr     ldaxysp
- *     jsr     pushax
- *
- * If a/x are not used later, replace that by
- *
- *     ldy     #xx+2
- *     jsr     pushwysp
- *
- * saving 3 bytes and several cycles.
- */
+**
+**     ldy     #xx
+**     jsr     ldaxysp
+**     jsr     pushax
+**
+** If a/x are not used later, replace that by
+**
+**     ldy     #xx+2
+**     jsr     pushwysp
+**
+** saving 3 bytes and several cycles.
+*/
 
 unsigned OptPush2 (CodeSeg* S);
 /* A sequence
- *
- *     jsr     ldaxidx
- *     jsr     pushax
- *
- * may get replaced by
- *
- *     jsr     pushwidx
- *
- */
+**
+**     jsr     ldaxidx
+**     jsr     pushax
+**
+** may get replaced by
+**
+**     jsr     pushwidx
+*/
 
 
 
 /* End of coptpush.h */
 
 #endif
-
-
-