Started to add config file
git-svn-id: svn://svn.cc65.org/cc65/trunk@336 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -133,11 +133,13 @@ void DefLabel (const char* Name)
|
||||
void OneDataByte (void)
|
||||
/* Output a .byte line with the current code byte */
|
||||
{
|
||||
unsigned char B = GetCodeByte ();
|
||||
|
||||
if (Pass > 1) {
|
||||
Indent (MIndent);
|
||||
Output (".byte");
|
||||
Indent (AIndent);
|
||||
Output ("$%02X", GetCodeByte());
|
||||
Output ("$%02X", B);
|
||||
LineFeed ();
|
||||
}
|
||||
}
|
||||
@@ -153,3 +155,4 @@ void SeparatorLine (void)
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user