X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=src%2Fda65%2Foutput.h;h=31b0e52e9dfb371726092e9c90564603f64afd36;hb=e9da20f96127c24d8577bdd07e801ee8dbf353ae;hp=e2129019dcf2199231a88b891d2b3c64f917f7db;hpb=42fb5661f12a007327b4825e294e2605319d1598;p=cc65 diff --git a/src/da65/output.h b/src/da65/output.h index e2129019d..31b0e52e9 100644 --- a/src/da65/output.h +++ b/src/da65/output.h @@ -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 */