├── Bank.cc ├── CMakeLists.txt ├── Controller ├── ARM │ ├── CoreARM.cc │ ├── CoreARM.h │ ├── InstructionARM.cc │ ├── InstructionARM.h │ └── templateARM.h ├── Changelist.cc ├── StatelessChangelist.cc └── StatelessData.cc ├── Core.cc ├── Model ├── File.cc ├── Memory.cc ├── ParsedInstruction.cc └── RegisterFile.cc ├── Support └── Mailbox.cc ├── View ├── Commands.cc ├── FrontEnd.cc ├── FrontEndConsole.cc ├── FrontEndRest.cc ├── FrontEndServer.cc └── Lexer.cc ├── data ├── eda.css ├── eda_bank.html ├── eda_function.html ├── favicon.ico └── script │ ├── eda_base.js │ ├── eda_drawing.js │ ├── eda_events.js │ ├── eda_graph.js │ ├── eda_graph_old.js │ ├── eda_lib.js │ └── eda_server.js ├── include ├── Bank.h ├── Changelist.h ├── Commands.h ├── Core.h ├── File.h ├── FrontEnd.h ├── FrontEndConsole.h ├── FrontEndRest.h ├── FrontEndServer.h ├── Function.h ├── Instruction.h ├── Lexer.h ├── Mailbox.h ├── Memory.h ├── ParsedInstruction.h ├── RegisterFile.h ├── StatelessChangelist.h ├── StatelessData.h ├── macros.h └── threading.h ├── main.cc └── tests ├── File_test.cc ├── InstructionARM_test.cc ├── Memory_test.cc ├── ParsedInstruction_test.cc └── data ├── Memory_data └── eda_test.bin /Bank.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Bank.cc -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Controller/ARM/CoreARM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Controller/ARM/CoreARM.cc -------------------------------------------------------------------------------- /Controller/ARM/CoreARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Controller/ARM/CoreARM.h -------------------------------------------------------------------------------- /Controller/ARM/InstructionARM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Controller/ARM/InstructionARM.cc -------------------------------------------------------------------------------- /Controller/ARM/InstructionARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Controller/ARM/InstructionARM.h -------------------------------------------------------------------------------- /Controller/ARM/templateARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Controller/ARM/templateARM.h -------------------------------------------------------------------------------- /Controller/Changelist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Controller/Changelist.cc -------------------------------------------------------------------------------- /Controller/StatelessChangelist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Controller/StatelessChangelist.cc -------------------------------------------------------------------------------- /Controller/StatelessData.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Controller/StatelessData.cc -------------------------------------------------------------------------------- /Core.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Core.cc -------------------------------------------------------------------------------- /Model/File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Model/File.cc -------------------------------------------------------------------------------- /Model/Memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Model/Memory.cc -------------------------------------------------------------------------------- /Model/ParsedInstruction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Model/ParsedInstruction.cc -------------------------------------------------------------------------------- /Model/RegisterFile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Model/RegisterFile.cc -------------------------------------------------------------------------------- /Support/Mailbox.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/Support/Mailbox.cc -------------------------------------------------------------------------------- /View/Commands.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/View/Commands.cc -------------------------------------------------------------------------------- /View/FrontEnd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/View/FrontEnd.cc -------------------------------------------------------------------------------- /View/FrontEndConsole.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/View/FrontEndConsole.cc -------------------------------------------------------------------------------- /View/FrontEndRest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/View/FrontEndRest.cc -------------------------------------------------------------------------------- /View/FrontEndServer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/View/FrontEndServer.cc -------------------------------------------------------------------------------- /View/Lexer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/View/Lexer.cc -------------------------------------------------------------------------------- /data/eda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/eda.css -------------------------------------------------------------------------------- /data/eda_bank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/eda_bank.html -------------------------------------------------------------------------------- /data/eda_function.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/eda_function.html -------------------------------------------------------------------------------- /data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/favicon.ico -------------------------------------------------------------------------------- /data/script/eda_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/script/eda_base.js -------------------------------------------------------------------------------- /data/script/eda_drawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/script/eda_drawing.js -------------------------------------------------------------------------------- /data/script/eda_events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/script/eda_events.js -------------------------------------------------------------------------------- /data/script/eda_graph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/script/eda_graph.js -------------------------------------------------------------------------------- /data/script/eda_graph_old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/script/eda_graph_old.js -------------------------------------------------------------------------------- /data/script/eda_lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/script/eda_lib.js -------------------------------------------------------------------------------- /data/script/eda_server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/data/script/eda_server.js -------------------------------------------------------------------------------- /include/Bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Bank.h -------------------------------------------------------------------------------- /include/Changelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Changelist.h -------------------------------------------------------------------------------- /include/Commands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Commands.h -------------------------------------------------------------------------------- /include/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Core.h -------------------------------------------------------------------------------- /include/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/File.h -------------------------------------------------------------------------------- /include/FrontEnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/FrontEnd.h -------------------------------------------------------------------------------- /include/FrontEndConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/FrontEndConsole.h -------------------------------------------------------------------------------- /include/FrontEndRest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/FrontEndRest.h -------------------------------------------------------------------------------- /include/FrontEndServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/FrontEndServer.h -------------------------------------------------------------------------------- /include/Function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Function.h -------------------------------------------------------------------------------- /include/Instruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Instruction.h -------------------------------------------------------------------------------- /include/Lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Lexer.h -------------------------------------------------------------------------------- /include/Mailbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Mailbox.h -------------------------------------------------------------------------------- /include/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/Memory.h -------------------------------------------------------------------------------- /include/ParsedInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/ParsedInstruction.h -------------------------------------------------------------------------------- /include/RegisterFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/RegisterFile.h -------------------------------------------------------------------------------- /include/StatelessChangelist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/StatelessChangelist.h -------------------------------------------------------------------------------- /include/StatelessData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/StatelessData.h -------------------------------------------------------------------------------- /include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/macros.h -------------------------------------------------------------------------------- /include/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/include/threading.h -------------------------------------------------------------------------------- /main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/main.cc -------------------------------------------------------------------------------- /tests/File_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/tests/File_test.cc -------------------------------------------------------------------------------- /tests/InstructionARM_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/tests/InstructionARM_test.cc -------------------------------------------------------------------------------- /tests/Memory_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/tests/Memory_test.cc -------------------------------------------------------------------------------- /tests/ParsedInstruction_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/tests/ParsedInstruction_test.cc -------------------------------------------------------------------------------- /tests/data/Memory_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/tests/data/Memory_data -------------------------------------------------------------------------------- /tests/data/eda_test.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-reversing/HEAD/tests/data/eda_test.bin --------------------------------------------------------------------------------