FreeCalypso > hg > freecalypso-reveng
changeset 213:05d2d34f5015
compal directory: added analysis of C139 boot code version with 1004 signature
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Mon, 25 Jul 2016 19:29:03 +0000 |
parents | 422d45f48fe6 |
children | 6b40617d00e6 |
files | .hgignore compal/Makefile compal/c139-boot1004.bin |
diffstat | 3 files changed, 12 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgignore Mon Mar 28 07:04:20 2016 +0000 +++ b/.hgignore Mon Jul 25 19:29:03 2016 +0000 @@ -12,6 +12,7 @@ ^compal/c118-newboot\. ^compal/c123-boot\. ^compal/c139-boot\. +^compal/c139-newboot\. ^compal/c139-tfboot\. ^compal/c140-boot\. ^compal/c156-boot\.
--- a/compal/Makefile Mon Mar 28 07:04:20 2016 +0000 +++ b/compal/Makefile Mon Jul 25 19:29:03 2016 +0000 @@ -1,12 +1,14 @@ C118= c118-3.0.81.E-boot.bin C123= c123-boot.bin C139= c139-boot.90.04.bin +C139NEW=c139-boot1004.bin C139TF= c139-tfboot.bin C140= c140-boot.bin C156= c156-boot.90.05.bin GEN= c118-newboot.dis16 c118-newboot.dis32 c118-newboot.hex \ c123-boot.dis16 c123-boot.dis32 c123-boot.hex \ c139-boot.dis16 c139-boot.dis32 c139-boot.hex \ + c139-newboot.dis16 c139-newboot.dis32 c139-newboot.hex \ c139-tfboot.dis16 c139-tfboot.dis32 c139-tfboot.hex \ c140-boot.dis16 c140-boot.dis32 c140-boot.hex \ c156-boot.dis16 c156-boot.dis32 c156-boot.hex \ @@ -43,6 +45,15 @@ c139-boot.hex: ${C139} hd ${C139} > $@ +c139-newboot.dis16: ${C139NEW} ${THUMBDIS} + ${THUMBDIS} ${C139NEW} > $@ + +c139-newboot.dis32: ${C139NEW} ${ARMDIS} + ${ARMDIS} ${C139NEW} > $@ + +c139-newboot.hex: ${C139NEW} + hd ${C139NEW} > $@ + c139-tfboot.dis16: ${C139TF} ${THUMBDIS} ${THUMBDIS} ${C139TF} > $@