.PRECIOUS:${BOOT_CODE} QUIET=1 # QUIET: 1=clean, non-verbose output # 2=normal make output SIM=VERILATOR # SIM: VERILATOR: use Verilator # ICARUS: use Icarus Verilog NUMACTL=#numactl -m 0 -C 0,1 -- ifeq "${QUIET}" "1" QUIET_AS = @echo ' AS '$@; QUIET_CC = @echo ' CC '$@; QUIET_VVP = @echo ' VVP '$@; QUIET_IVERILOG = @echo ' IVERILOG '$@; QUIET_VERILATOR = @echo ' VERILATOR '$@; QUIET_CLEAN = @printf ' CLEAN %s\n' $1; QUIET_VERILATOR_RUN = @printf ' %s %s\n' $1 $2; Q = @ MAKEOPTS=--no-print-directory .SILENT: else Q = endif .PHONY: run wave disas run: $(subst .txt,.run,${BOOT_CODE}) wave: $(subst .txt,.wave,${BOOT_CODE}) disas: $(subst .txt,.disas,${BOOT_CODE}) # Assembling code %.txt:%.bin ${Q}dd if=/dev/zero bs=1 count=32768 of="$(subst .bin,.stage,$<)" status=none ${Q}dd if="$<" of="$(subst .bin,.stage,$<)" conv=notrunc,nocreat status=none ${Q}xxd -ps -c 2 "$(subst .bin,.stage,$<)" > "$@" ${Q}rm "$(subst .bin,.stage,$<)" ifeq "${NO_ASM}" "0" %.bin:%.asm ${QUIET_AS} ${Q}as86 -0 "$<" -b "$@" endif # Running simulation ifeq "${SIM}" "ICARUS" %.fst %.memdump: %.txt ${SYSTEM_VVP} ${MICROCODE} ${QUIET_VVP} ${Q}vvp "${SYSTEM_VVP}" -fst +BOOT_CODE="$<" +WAVEFORM="$(subst .txt,.fst,$<)" +MEMDUMP="$(subst .txt,.memdumptxt,$<)" +MICROCODE="${MICROCODE}" ${Q}grep -v '^//' "$(subst .txt,.memdumptxt,$<)" | xxd -ps -c 2 -r > "$(subst .txt,.memdump,$<)" ${Q}rm "$(subst .txt,.memdumptxt,$<)" %.run: %.txt ${SYSTEM_VVP} ${MICROCODE} ${QUIET_VVP} ${Q}vvp -i "${SYSTEM_VVP}" +BOOT_CODE="$<" +MICROCODE="${MICROCODE}" else ifeq "${SIM}" "VERILATOR" %.fst %.memdump: %.txt ${VERILATOR_BIN} ${MICROCODE} $(call QUIET_VERILATOR_RUN,$(word 2,$^),$<) ${Q}"${VERILATOR_BIN}" +BOOT_CODE="$<" +WAVEFORM="$(subst .txt,.fst,$<)" +MEMDUMP="$(subst .txt,.memdumptxt,$<)" +MICROCODE="${MICROCODE}" ${Q}grep -v '^//' "$(subst .txt,.memdumptxt,$<)" | xxd -ps -c 2 -r > "$(subst .txt,.memdump,$<)" ${Q}rm "$(subst .txt,.memdumptxt,$<)" %.run: %.txt ${VERILATOR_BIN} ${MICROCODE} $(call QUIET_VERILATOR_RUN,$(word 2,$^),$<) ${Q} ${NUMACTL} "${VERILATOR_BIN}" +BOOT_CODE="$<" +MICROCODE="${MICROCODE}" endif %.disas: %.bin objdump -D -b binary -m i8086 $^ | less # Tools %.wave : %.fst gtkwave "$<" "${GTKWSAVE}"