├── COPYING ├── ChangeLog ├── Makefile ├── README.md ├── TODO.md ├── bdiff.c ├── calc.c ├── cmd.c ├── dis ├── 8086.c ├── arm.c ├── x32.c ├── x32.h └── x86.c ├── hexparse.c ├── io.c ├── ired.1 ├── ired.c ├── ired.h ├── mkfile ├── t ├── Makefile ├── file1 ├── file2 ├── file3 ├── file4 └── test.sh ├── util.c ├── v850.sh ├── vired └── vired.1 /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/COPYING -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/TODO.md -------------------------------------------------------------------------------- /bdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/bdiff.c -------------------------------------------------------------------------------- /calc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/calc.c -------------------------------------------------------------------------------- /cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/cmd.c -------------------------------------------------------------------------------- /dis/8086.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/dis/8086.c -------------------------------------------------------------------------------- /dis/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/dis/arm.c -------------------------------------------------------------------------------- /dis/x32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/dis/x32.c -------------------------------------------------------------------------------- /dis/x32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/dis/x32.h -------------------------------------------------------------------------------- /dis/x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/dis/x86.c -------------------------------------------------------------------------------- /hexparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/hexparse.c -------------------------------------------------------------------------------- /io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/io.c -------------------------------------------------------------------------------- /ired.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/ired.1 -------------------------------------------------------------------------------- /ired.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/ired.c -------------------------------------------------------------------------------- /ired.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/ired.h -------------------------------------------------------------------------------- /mkfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/mkfile -------------------------------------------------------------------------------- /t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/t/Makefile -------------------------------------------------------------------------------- /t/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/t/file1 -------------------------------------------------------------------------------- /t/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/t/file2 -------------------------------------------------------------------------------- /t/file3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/t/file3 -------------------------------------------------------------------------------- /t/file4: -------------------------------------------------------------------------------- 1 | Hello world 2 | is fucking awesome 3 | and new as shit 4 | -------------------------------------------------------------------------------- /t/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/t/test.sh -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/util.c -------------------------------------------------------------------------------- /v850.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/v850.sh -------------------------------------------------------------------------------- /vired: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/vired -------------------------------------------------------------------------------- /vired.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radare/ired/HEAD/vired.1 --------------------------------------------------------------------------------