├── Address.cc ├── CMakeLists.txt ├── Changelist.cc ├── ChangelistFactory.cc ├── Data ├── backend.css ├── backend.html ├── backend.js ├── favicon.ico ├── flat.html ├── index.html ├── revolution │ ├── eda.html │ ├── eda_communication.js │ └── eda_core.js ├── script │ ├── actions.js │ ├── communication.js │ ├── layout.js │ ├── movement.js │ ├── selection.js │ └── util.js └── style │ └── eda.css ├── FactoryOwner.cc ├── FactoryOwner.h ├── File.cc ├── File.h ├── History.cc ├── Instruction.cc ├── InstructionFactory.cc ├── InstructionFactoryARM.cc ├── InstructionFactoryARM.h ├── InstructionFactoryISDF.cc ├── InstructionFactoryISDF.h ├── InstructionFactoryX86.cc ├── InstructionFactoryX86.h ├── JSON.cc ├── JSON.h ├── Memory.cc ├── ParsedInstruction.cc ├── Servlet.cc ├── Servlet.h ├── StatelessChangelist.cc ├── arm.isdf ├── data.h ├── data_atomic.h ├── data_memory.h ├── debug.cc ├── debug.h ├── logic.h ├── main.cc ├── spu.isdf ├── thumb.isdf ├── util.cc └── util.h /Address.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Address.cc -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Changelist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Changelist.cc -------------------------------------------------------------------------------- /ChangelistFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/ChangelistFactory.cc -------------------------------------------------------------------------------- /Data/backend.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/backend.css -------------------------------------------------------------------------------- /Data/backend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/backend.html -------------------------------------------------------------------------------- /Data/backend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/backend.js -------------------------------------------------------------------------------- /Data/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/favicon.ico -------------------------------------------------------------------------------- /Data/flat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/flat.html -------------------------------------------------------------------------------- /Data/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/index.html -------------------------------------------------------------------------------- /Data/revolution/eda.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/revolution/eda.html -------------------------------------------------------------------------------- /Data/revolution/eda_communication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/revolution/eda_communication.js -------------------------------------------------------------------------------- /Data/revolution/eda_core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/revolution/eda_core.js -------------------------------------------------------------------------------- /Data/script/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/script/actions.js -------------------------------------------------------------------------------- /Data/script/communication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/script/communication.js -------------------------------------------------------------------------------- /Data/script/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/script/layout.js -------------------------------------------------------------------------------- /Data/script/movement.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Data/script/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/script/selection.js -------------------------------------------------------------------------------- /Data/script/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/script/util.js -------------------------------------------------------------------------------- /Data/style/eda.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Data/style/eda.css -------------------------------------------------------------------------------- /FactoryOwner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/FactoryOwner.cc -------------------------------------------------------------------------------- /FactoryOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/FactoryOwner.h -------------------------------------------------------------------------------- /File.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/File.cc -------------------------------------------------------------------------------- /File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/File.h -------------------------------------------------------------------------------- /History.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/History.cc -------------------------------------------------------------------------------- /Instruction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Instruction.cc -------------------------------------------------------------------------------- /InstructionFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/InstructionFactory.cc -------------------------------------------------------------------------------- /InstructionFactoryARM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/InstructionFactoryARM.cc -------------------------------------------------------------------------------- /InstructionFactoryARM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/InstructionFactoryARM.h -------------------------------------------------------------------------------- /InstructionFactoryISDF.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/InstructionFactoryISDF.cc -------------------------------------------------------------------------------- /InstructionFactoryISDF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/InstructionFactoryISDF.h -------------------------------------------------------------------------------- /InstructionFactoryX86.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/InstructionFactoryX86.cc -------------------------------------------------------------------------------- /InstructionFactoryX86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/InstructionFactoryX86.h -------------------------------------------------------------------------------- /JSON.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/JSON.cc -------------------------------------------------------------------------------- /JSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/JSON.h -------------------------------------------------------------------------------- /Memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Memory.cc -------------------------------------------------------------------------------- /ParsedInstruction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/ParsedInstruction.cc -------------------------------------------------------------------------------- /Servlet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Servlet.cc -------------------------------------------------------------------------------- /Servlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/Servlet.h -------------------------------------------------------------------------------- /StatelessChangelist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/StatelessChangelist.cc -------------------------------------------------------------------------------- /arm.isdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/arm.isdf -------------------------------------------------------------------------------- /data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/data.h -------------------------------------------------------------------------------- /data_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/data_atomic.h -------------------------------------------------------------------------------- /data_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/data_memory.h -------------------------------------------------------------------------------- /debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/debug.cc -------------------------------------------------------------------------------- /debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/debug.h -------------------------------------------------------------------------------- /logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/logic.h -------------------------------------------------------------------------------- /main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/main.cc -------------------------------------------------------------------------------- /spu.isdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/spu.isdf -------------------------------------------------------------------------------- /thumb.isdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/thumb.isdf -------------------------------------------------------------------------------- /util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/util.cc -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/eda-2/HEAD/util.h --------------------------------------------------------------------------------