diff options
Diffstat (limited to 'support/regression/ports/hc08')
| -rw-r--r-- | support/regression/ports/hc08/spec.mk | 73 | ||||
| -rw-r--r-- | support/regression/ports/hc08/support.c | 22 | ||||
| -rw-r--r-- | support/regression/ports/hc08/uCsim.cmd | 7 |
3 files changed, 102 insertions, 0 deletions
diff --git a/support/regression/ports/hc08/spec.mk b/support/regression/ports/hc08/spec.mk new file mode 100644 index 0000000..22779ea --- /dev/null +++ b/support/regression/ports/hc08/spec.mk @@ -0,0 +1,73 @@ +# Regression test specification for the hc08 target running with uCsim + +# simulation timeout in seconds +SIM_TIMEOUT = 40 + +# path to uCsim +ifdef SDCC_BIN_PATH + UCHC08C = $(SDCC_BIN_PATH)/shc08$(EXEEXT) + + AS_HC08C = $(SDCC_BIN_PATH)/sdas6808$(EXEEXT) +else + ifdef UCSIM_DIR + UCHC08A = $(UCSIM_DIR)/hc08.src/shc08$(EXEEXT) + else + UCHC08A = $(top_builddir)/sim/ucsim/hc08.src/shc08$(EXEEXT) + UCHC08B = $(top_builddir)/bin/shc08$(EXEEXT) + endif + + EMU = $(WINE) $(shell if [ -f $(UCHC08A) ]; then echo $(UCHC08A); else echo $(UCHC08B); fi) + + AS = $(WINE) $(top_builddir)/bin/sdas6808$(EXEEXT) + +ifndef CROSSCOMPILING + SDCCFLAGS += --nostdinc -I$(top_srcdir) + LINKFLAGS += --nostdlib -L$(top_builddir)/device/lib/build/hc08 +endif +endif + +ifdef CROSSCOMPILING + SDCCFLAGS += -I$(top_srcdir) +endif + +SDCCFLAGS += -mhc08 --less-pedantic --out-fmt-ihx +LINKFLAGS += hc08.lib + +OBJEXT = .rel +BINEXT = .ihx + +# otherwise `make` deletes testfwk.rel and `make -j` will fail +.PRECIOUS: $(PORT_CASES_DIR)/%$(OBJEXT) + +# Required extras +EXTRAS = $(PORT_CASES_DIR)/testfwk$(OBJEXT) $(PORT_CASES_DIR)/support$(OBJEXT) +include $(srcdir)/fwk/lib/spec.mk + +# Rule to link into .ihx +%$(BINEXT): %$(OBJEXT) $(EXTRAS) $(FWKLIB) $(PORT_CASES_DIR)/fwk.lib + $(SDCC) $(SDCCFLAGS) $(LINKFLAGS) $(EXTRAS) $(PORT_CASES_DIR)/fwk.lib $< -o $@ + +%$(OBJEXT): %.asm + $(AS) -plosgff $< + +%$(OBJEXT): %.c + $(SDCC) $(SDCCFLAGS) -c $< -o $@ + +$(PORT_CASES_DIR)/%$(OBJEXT): $(PORTS_DIR)/$(PORT)/%.c + $(SDCC) $(SDCCFLAGS) -c $< -o $@ + +$(PORT_CASES_DIR)/%$(OBJEXT): $(srcdir)/fwk/lib/%.c + $(SDCC) $(SDCCFLAGS) -c $< -o $@ + +$(PORT_CASES_DIR)/fwk.lib: $(srcdir)/fwk/lib/fwk.lib + cat < $(srcdir)/fwk/lib/fwk.lib > $@ + +# run simulator with SIM_TIMEOUT seconds timeout +%.out: %$(BINEXT) $(CASES_DIR)/timeout + mkdir -p $(dir $@) + -$(CASES_DIR)/timeout $(SIM_TIMEOUT) $(EMU) $< < $(PORTS_DIR)/$(PORT)/uCsim.cmd > $@ \ + || echo -e --- FAIL: \"timeout, simulation killed\" in $(<:$(BINEXT)=.c)"\n"--- Summary: 1/1/1: timeout >> $@ + $(PYTHON) $(srcdir)/get_ticks.py < $@ >> $@ + -grep -n FAIL $@ /dev/null || true + +_clean: diff --git a/support/regression/ports/hc08/support.c b/support/regression/ports/hc08/support.c new file mode 100644 index 0000000..f9f1ab5 --- /dev/null +++ b/support/regression/ports/hc08/support.c @@ -0,0 +1,22 @@ + +void +_putchar(unsigned char c) +{ + c; + __asm + .db 0x9e, 0xed + __endasm; +} + +void +_initEmu(void) +{ +} + +void +_exitEmu(void) +{ + __asm + .db 0x9e, 0xec + __endasm; +} diff --git a/support/regression/ports/hc08/uCsim.cmd b/support/regression/ports/hc08/uCsim.cmd new file mode 100644 index 0000000..fb936cc --- /dev/null +++ b/support/regression/ports/hc08/uCsim.cmd @@ -0,0 +1,7 @@ +set error non-classified off +set error unknown_code off +set error memory off +set error stack off +run +state +quit |
