]> git.sur5r.net Git - cc65/blobdiff - src/da65/output.h
Fix codesize setting
[cc65] / src / da65 / output.h
index e2129019dcf2199231a88b891d2b3c64f917f7db..31b0e52e9dfb371726092e9c90564603f64afd36 100644 (file)
@@ -70,11 +70,14 @@ void DefLabel (const char* Name);
 void OneDataByte (void);
 /* Output a .byte line with the current code byte */
 
-void DataByteLine (unsigned Count);
-/* Output a line with Count data bytes */
+void DataByteLine (unsigned ByteCount);
+/* Output a line with bytes */
 
-void DataWordLine (unsigned Count);
-/* Output a line with Count data words */
+void DataWordLine (unsigned ByteCount);
+/* Output a line with words */
+
+void DataDWordLine (unsigned ByteCount);
+/* Output a line with dwords */
 
 void SeparatorLine (void);
 /* Print a separator line */