These reference all use the asm format. Here is an example of what I am seeing:
.global _helloWorld
_hellowWorld:
pea a6@
movel sp.a6
pea 20:w
jbsr _exit
unlk a6
rts
For example, the asm format does not have a jbsr operation. There is:
jsr -...
I have a large (40,000 line) assembly program for the M680040 processor which I am porting to run on VxWorks. Trouble is VxWorks uses C language calls to access system services. I can write a C routine calling a service and compile it with an option that produces a .s assembly file, but the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.