Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!samsung!zaphod.mps.ohio-state.edu!sdd.hp.com!hplabs!hpl-opus!hpnmdla!hpsad!randyh From: randyh@hpsad.HP.COM (Randy Hosler) Newsgroups: comp.sys.atari.st.tech Subject: Sozobon asm Message-ID: <18420003@hpsad.HP.COM> Date: 12 Sep 90 16:35:25 GMT Organization: HP Signal Analysis Div - Rohnert Park, CA Lines: 18 I need some help with a problem. The following source fragment is for MEGAMAX C. I'm trying to compile it with Sozobon and it barfs on this asm code. Could some kind soul show me how to get Sozobon to accept this code. The var 'program' is a pointer to char. thanks alot, Randy ------------------------------------------------------------------------ asm { movem.l A6-A4,-(A7) move.l program,-(A7) jsr 0x32(program) move.l (A7),program jsr 0x88(program) move.l (A7)+,program movem.l (A7)+,A4-A6 } ------------------------------------------------------------------------