remove the Cutter project, now using Ghidra

This commit is contained in:
Lephenixnoir 2022-03-07 20:24:07 +00:00
parent 3748c88c96
commit 23c94a1068
Signed by untrusted user: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
8 changed files with 21 additions and 94667 deletions

5
emulator/.gitignore vendored
View File

@ -4,3 +4,8 @@ CPU73050.elf
# Compiled program
list-registers
# Ghidra projects
*.gpr
*.rep/

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,19 @@
Add the following entries to the repositor's configuration to have Git
automatically ignore the lines with /home in the project file.
## Obtaining CPU73050.elf
First extract `CPU73050.dll` from the emulator's files. Then use `objdump`:
```sh
% objdump CPU73050.dll -O elf32-i386 CPU73050.elf
```
## Git filter for Cutter projects
Note: currently unused.
Add the following entries to the repositor's configuration to have Git
automatically ignore the lines with `/home` in the project file.
```sh
% git config --local filter.remove-home-lines.clean 'sed "/\/home\// d"'
% git config --local filter.remove-home-lines.smudge cat
```