EXTENDED_INSTRUCTIONS=1

include ../make.regression


SCRIPT = 18f452.lkr

PROJECT = instructions
OBJECTS =  $(PROJECT).o
OUTPUT = $(PROJECT).hex
COD = $(PROJECT).cod
STC = $(PROJECT).stc
STARTUP_STC=startup.stc

all : sim

instructions.cod: instructions.o $(SCRIPT)
	gplink --map -s $(SCRIPT) -o instructions.hex instructions.o

extended_instructions.cod: extended_instructions.o $(SCRIPT)
	gplink --map -s $(SCRIPT) -o extended_instructions.hex extended_instructions.o


test1: instructions.cod
	$(GPSIM) -i -c $(STARTUP_STC) -D STC=instructions.cod


test2: extended_instructions.cod
	$(GPSIM) -i -c $(STARTUP_STC) -D STC=extended_instructions.cod


sim: test1 test2


syntax highlighted by Code2HTML, v. 0.9.1