]> git.sur5r.net Git - cc65/blobdiff - include/6502.h
Added mouse_ioctl
[cc65] / include / 6502.h
index 5f5225149fafbaa5a8a8f1879c77d6a6f6df0633..99641b21e137d1f22233cdd36c8f1b38f305e508 100644 (file)
@@ -49,9 +49,9 @@ unsigned char getcpu (void);
 
 
 /* Macros for CPU instructions */
-#define        BRK()   __asm__ ("\tbrk")
-#define CLI()  __asm__ ("\tcli")
-#define SEI()  __asm__ ("\tsei")
+#define        BRK()   __asm__ ("brk")
+#define CLI()  __asm__ ("cli")
+#define SEI()  __asm__ ("sei")
 
 
 
@@ -86,9 +86,9 @@ struct regs {
 
 /* Function to call any machine language subroutine. All registers in the
  * regs structure are passed into the routine and the results are passed
- * out. Some of the flags are ignored on input. The called routine must
- * end with an RTS.
- */   
+ * out. The B flag is ignored on input. The called routine must end with
+ * an RTS.
+ */
 void __fastcall__ _sys (struct regs* r);