Table of Contents

Devpac

Setup

; BEGIN Devpac
ASSIGN DevPac: <where you installed devpac>
ASSIGN C: DevPac: ADD 
; END Devpac

Manual

Using

GenAm

If you have more than one file, you'll probably want to use sc link with an smakefile:

snippet.asm
; main.asm
  XDEF _main
 
_main:
  MOVEQ #0,D0
  RTS
# smakefile
MAIN_OBJS = $(main.o)

.asm.o:
  genam -l $*.asm
  
main: $(MAIN_OBJS)
  sc link to main $(MAIN_OBJS)

Though this seems to make programs undebuggable in MonAm now? PhxAss seems better, but it's likely best if you just use GenAm on a single asm file.

Tips