mirror of
https://github.com/irmen/prog8.git
synced 2025-01-29 09:31:23 +00:00
no longer add nops around breakpoint for vice
This commit is contained in:
parent
d916027e75
commit
72640ae058
@ -1622,12 +1622,7 @@ $repeatLabel lda $counterVar
|
||||
"%breakpoint" -> {
|
||||
val label = "_prog8_breakpoint_${breakpointLabels.size+1}"
|
||||
breakpointLabels.add(label)
|
||||
|
||||
// TODO still need 2 nops to make 64tass generate correc breakpoint list for vice???
|
||||
|
||||
out("""
|
||||
nop
|
||||
$label nop""")
|
||||
out(label)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3,7 +3,7 @@ TODO
|
||||
|
||||
For next compiler release (7.7)
|
||||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
check AsmGen translate(stmt: Directive) breakpoint nop issue
|
||||
...
|
||||
|
||||
|
||||
Need help with
|
||||
|
@ -10,7 +10,12 @@ foo_bar:
|
||||
|
||||
sub start() {
|
||||
txt.print(myBar)
|
||||
txt.print(&foo_bar)
|
||||
|
||||
%breakpoint
|
||||
|
||||
txt.print_uwhex(&foo_bar, true)
|
||||
|
||||
%breakpoint
|
||||
return
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user