# I could use labels to delimit the actual computational assembly code in a # function, independent of architecture, and extract it with a script, I could # then append such independent assembly code fragments together in a single # function, presumably safely. # this KIND OF works, I'm not real happy with it though! use stdio.h volatile int bogus1, bogus2 test() start printf("hello world\n") printf("goodbye bogosity %d\n", 100) end if bogus1 goto start if bogus2 goto end return int main() test() return 0