Added two new global options, NewlineAfterJMP and NewlineAfterRTS.
git-svn-id: svn://svn.cc65.org/cc65/trunk@4963 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -555,6 +555,9 @@ void OH_AbsoluteXIndirect (const OpcDesc* D attribute ((unused)))
|
||||
void OH_Rts (const OpcDesc* D)
|
||||
{
|
||||
OH_Implicit (D);
|
||||
if (NewlineAfterRTS) {
|
||||
LineFeed ();
|
||||
}
|
||||
SeparatorLine();
|
||||
}
|
||||
|
||||
@@ -563,6 +566,9 @@ void OH_Rts (const OpcDesc* D)
|
||||
void OH_JmpAbsolute (const OpcDesc* D)
|
||||
{
|
||||
OH_Absolute (D);
|
||||
if (NewlineAfterJMP) {
|
||||
LineFeed ();
|
||||
}
|
||||
SeparatorLine ();
|
||||
}
|
||||
|
||||
@@ -571,7 +577,10 @@ void OH_JmpAbsolute (const OpcDesc* D)
|
||||
void OH_JmpAbsoluteIndirect (const OpcDesc* D)
|
||||
{
|
||||
OH_AbsoluteIndirect (D);
|
||||
SeparatorLine ();
|
||||
if (NewlineAfterJMP) {
|
||||
LineFeed ();
|
||||
}
|
||||
SeparatorLine ();
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user