Added hitdump. It's not yet complete in the sense that it can tolerate any input file you give it, but it can correctly disassemble every HIT file in both games now.

This commit is contained in:
Fatbag 2012-07-26 13:35:45 -05:00
parent 90c703188b
commit 6b0b0c1d9c
9 changed files with 1121 additions and 88 deletions

View file

@ -2,15 +2,15 @@ cmake_minimum_required(VERSION 2.6)
project(hitutils)
set(HITDUMP_SOURCES
hitdump.cpp
hitdump.c
)
set(HITASM_SOURCES
hitasm.cpp
hitasm.c
)
set(HITLD_SOURCES
hitld.cpp
hitld.c
)
add_executable(hitdump ${HITDUMP_SOURCES})