]> git.sur5r.net Git - cc65/blobdiff - src/da65/data.h
Use "override" when appending to CFLAGS, so this works even when CFLAGS is
[cc65] / src / da65 / data.h
index da9aaea65e0f2caf6c80980550cc8c16c5b792c7..a6603fa03ce3302feabb34610e979ac57a704a79 100644 (file)
 
 
 
-void ByteTable (unsigned RemainingBytes);
+unsigned ByteTable (void);
 /* Output a table of bytes */
 
-void WordTable (unsigned RemainingBytes);
+unsigned DByteTable (void);
+/* Output a table of dbytes */
+
+unsigned WordTable (void);
 /* Output a table of words */
 
-void AddrTable (unsigned RemainingBytes);
+unsigned DWordTable (void);
+/* Output a table of double words */
+
+unsigned AddrTable (void);
 /* Output a table of addresses */
 
+unsigned RtsTable (void);
+/* Output a table of RTS addresses (address - 1) */
+
+unsigned TextTable (void);
+/* Output a table of text messages */
+
 
 
 /* End of data.h */