Amiga.org

Amiga computer related discussion => Amiga Software Issues and Discussion => Topic started by: orange on December 20, 2017, 09:31:56 PM

Title: SAS/C compile with asm
Post by: orange on December 20, 2017, 09:31:56 PM
I'm trying to compile rawread.c. The problem is it contains assembly source (asm.s file), so SAS/C exits with:
Error 425: Cannot find library asm.o
Presumably, asm should be processed first?

How to compile rawread?

Thanks.
Title: Re: SAS/C compile with asm
Post by: x303 on December 20, 2017, 10:01:20 PM
You compile asm.s first with: phxass asm.s
Then use smake to compile/link all.
Title: Re: SAS/C compile with asm
Post by: orange on December 20, 2017, 10:20:41 PM
thanks, that works nice.