diff --git a/emulator/.gitattributes b/emulator/.gitattributes new file mode 100644 index 0000000..790cac8 --- /dev/null +++ b/emulator/.gitattributes @@ -0,0 +1 @@ +CPU73050/rc filter=remove-home-lines diff --git a/emulator/.gitignore b/emulator/.gitignore new file mode 100644 index 0000000..6cc19e7 --- /dev/null +++ b/emulator/.gitignore @@ -0,0 +1,3 @@ +# Original DLL and related ELF +CPU73050.dll +CPU73050.elf diff --git a/emulator/CPU73050/rc b/emulator/CPU73050/rc index a49cabc..2b1afe6 100644 --- a/emulator/CPU73050/rc +++ b/emulator/CPU73050/rc @@ -301,12 +301,10 @@ "e diff.to = 0" "e dir.dbgsnap = ." "e dir.depth = 10" -"e dir.home = /home/el" "e dir.libs = " "e dir.magic = /usr/share/radare2/4.4.0/magic" "e dir.plugins = /usr/lib/radare2/4.4.0" "e dir.prefix = /usr" -"e dir.projects = /home/el/Projects/fxos-library/emulator" "e dir.source = " "e dir.tmp = " "e dir.types = /usr/include" @@ -341,13 +339,13 @@ "e esil.verbose = 0" "e file.desc = " "e file.info = true" -"e file.lastpath = /home/el/Documents/PC/OS Émulateur G90 3.00/CPU73050.dll" +"e file.lastpath = CPU73050.dll" "e file.loadalign = 0x00000400" "e file.location = " "e file.md5 = " "e file.offset = " "e file.openmany = 1" -"e file.path = /home/el/Documents/PC/OS Émulateur G90 3.00/CPU73050.dll" +"e file.path = CPU73050.dll" "e file.type = pe" "e fs.view = normal" "e graph.aeab = false" @@ -470,7 +468,6 @@ "e pdb.autoload = 0" "e pdb.extract = 1" "e pdb.server = https://msdl.microsoft.com/download/symbols" -"e pdb.symstore = /home/el/.local/share/radare2/pdb" "e pdb.useragent = Microsoft-Symbol-Server/6.11.0001.402" "e prj.files = false" "e prj.git = false" diff --git a/emulator/README.md b/emulator/README.md new file mode 100644 index 0000000..197f52b --- /dev/null +++ b/emulator/README.md @@ -0,0 +1,5 @@ +Add the following entries to the repositor's configuration to have Git +automatically ignore the lines with /home in the project file. + +% git config --local filter.remove-home-lines.clean 'sed "/\/home\// d"' +% git config --local filter.remove-home-lines.smudge cat