Files
super6502/.gitlab-ci.yml
Byron Lathi ad55f986f5 Add bb_spi_controller
Bit banged spi controller, very simple but very slow.
2022-03-08 15:26:01 -06:00

33 lines
588 B
YAML

default:
tags:
- docker
build-sw:
stage: build
image: bslathi19/cc65-pipeline
script:
- cd sw/
- make
build-fpga:
stage: build
image: bslathi19/modelsim_18.1:lite
script:
- cd hw/fpga/
- quartus_map super6502 -c super6502
test_addr_decode:
stage: test
image: bslathi19/modelsim_18.1:lite
script:
- cd hw/fpga/simulation/modelsim/
- vsim -do "do cs_testbench.do"
test_bb_spi:
stage: test
image: bslathi19/modelsim_18.1:lite
script:
- cd hw/fpga/simulation/modelsim/
- vsim -do "do bb_spi_testbench.do"