blob: eb43da7d883f56d4c1b45b029d9813a93af0e8e9 [file] [log] [blame] [edit]
#!/bin/sh
set -ex
msp430-gcc -Wall -Os -o sieve.elf sieve.c
msp430-objcopy -O ihex sieve.elf sieve.ihex
python ihex2vlog.py < sieve.ihex > sieve.v
msp430-objdump -d sieve.elf
rm -f sieve.elf sieve.ihex