You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be nice if the files generated by disdump(1), limbo(1) and wm/rt(1) could be readily built with asm(1). However this currently doesn't work, because these programs don't always spit out valid syntax.
Disdump only outputs the instructions, but not additional linker directives.
For instance: disdump generates this for /dis/pause.dis:
The code from disdump cannot be built with asm(1) because there's a syntax error on the first line.
The line should be newcw 44(fp)
The code from limbo -S has the same syntax error.
The code from wm/rt also has this error.
Using code from wm/rt would be useful here.
The text was updated successfully, but these errors were encountered:
mehlon
changed the title
disdump(1): output doesn't work with asm(1)
disdump, limbo, wm/rt: assembly output doesn't work with asm(1)
Oct 13, 2019
It'd be nice if the files generated by disdump(1), limbo(1) and wm/rt(1) could be readily built with asm(1). However this currently doesn't work, because these programs don't always spit out valid syntax.
Disdump only outputs the instructions, but not additional linker directives.
For instance: disdump generates this for
/dis/pause.dis
:limbo -S /appl/cmd/pause.b
generates this:wm/rt
generates this if you select "Write .s file":The code from
disdump
cannot be built with asm(1) because there's a syntax error on the first line.The line should be
newcw 44(fp)
The code from
limbo -S
has the same syntax error.The code from
wm/rt
also has this error.Using code from
wm/rt
would be useful here.The text was updated successfully, but these errors were encountered: