FreeCalypso > hg > freecalypso-reveng
comparison bootrom-old/Makefile @ 206:11761eaf712c
old Calypso F741979B boot ROM analyzed
author | Mychaela Falconia <falcon@ivan.Harhan.ORG> |
---|---|
date | Wed, 30 Dec 2015 08:27:46 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
205:8bdc87c0fc03 | 206:11761eaf712c |
---|---|
1 BIN= bootrom-f741979b.bin | |
2 GEN= bootrom-old.dis16 bootrom-old.dis32 bootrom-old.hex | |
3 ARMDIS= ../arm7dis/armdis | |
4 THUMBDIS=../arm7dis/thumbdis | |
5 | |
6 all: ${GEN} | |
7 | |
8 bootrom-old.dis16: ${BIN} ${THUMBDIS} | |
9 ${THUMBDIS} ${BIN} > $@ | |
10 | |
11 bootrom-old.dis32: ${BIN} ${ARMDIS} | |
12 ${ARMDIS} ${BIN} > $@ | |
13 | |
14 bootrom-old.hex: ${BIN} | |
15 hd ${BIN} > $@ | |
16 | |
17 clean: | |
18 rm -f ${GEN} |