├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .hgtags ├── AUTHORS ├── Changelog ├── LICENSE ├── Makefile.acr ├── README.md ├── SUPPORT.md ├── TODO ├── autogen.sh ├── configure ├── configure.acr ├── dist ├── Makefile ├── acr │ ├── CONFIG │ ├── DESCR │ └── Makefile └── deb_hand.mak ├── doc ├── amr-tutorial ├── backup ├── check-user ├── cmdline ├── conditionals ├── crosscompile ├── crosspath-build ├── developers │ ├── adding_new_language │ ├── string-mode │ ├── unit-tests │ └── using_cvs ├── endian ├── flag-arguments ├── gnumake ├── hello_world ├── keywords ├── libtool ├── make-tips ├── pkg-config ├── sandbox └── syntax ├── examples ├── and.acr ├── cflags.acr ├── chaos.acr ├── check.acr ├── chklibdl.acr ├── contexts.acr ├── cpu.acr ├── endian.acr ├── if.acr ├── ifeqval.acr ├── perl.acr ├── pkgcfg.acr ├── python.acr ├── ruby.acr ├── sdl.acr ├── sizeof.acr ├── vala.acr └── x11.acr ├── man ├── Makefile ├── man1 │ ├── acr-cat.1 │ ├── acr-wrap.1 │ ├── acr.1 │ ├── amr.1 │ └── install-acr.1 └── man5 │ ├── configure.acr.5 │ └── configure.amr.5 ├── modules ├── csharp.acr ├── java-gtk.acr └── sizes.acr ├── src ├── acr ├── acr-cat ├── acr-install ├── acr-sh ├── acr-wrap ├── amr └── vim │ ├── ftplugin │ └── acr.vim │ ├── install.sh.acr │ ├── syntax │ └── acr.vim │ └── vimrc └── tests ├── Makefile ├── bug-eof.acr ├── test-triplet.sh └── test.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | src/vim/install.sh 2 | Makefile 3 | -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- 1 | 37b53e53a2260d8acf87ac6ed7ed75cc24736785 0.8.9 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/AUTHORS -------------------------------------------------------------------------------- /Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/Changelog -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/Makefile.acr -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/README.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/autogen.sh -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/configure -------------------------------------------------------------------------------- /configure.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/configure.acr -------------------------------------------------------------------------------- /dist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/dist/Makefile -------------------------------------------------------------------------------- /dist/acr/CONFIG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/dist/acr/CONFIG -------------------------------------------------------------------------------- /dist/acr/DESCR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/dist/acr/DESCR -------------------------------------------------------------------------------- /dist/acr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/dist/acr/Makefile -------------------------------------------------------------------------------- /dist/deb_hand.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/dist/deb_hand.mak -------------------------------------------------------------------------------- /doc/amr-tutorial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/amr-tutorial -------------------------------------------------------------------------------- /doc/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/backup -------------------------------------------------------------------------------- /doc/check-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/check-user -------------------------------------------------------------------------------- /doc/cmdline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/cmdline -------------------------------------------------------------------------------- /doc/conditionals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/conditionals -------------------------------------------------------------------------------- /doc/crosscompile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/crosscompile -------------------------------------------------------------------------------- /doc/crosspath-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/crosspath-build -------------------------------------------------------------------------------- /doc/developers/adding_new_language: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/developers/adding_new_language -------------------------------------------------------------------------------- /doc/developers/string-mode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/developers/string-mode -------------------------------------------------------------------------------- /doc/developers/unit-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/developers/unit-tests -------------------------------------------------------------------------------- /doc/developers/using_cvs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/developers/using_cvs -------------------------------------------------------------------------------- /doc/endian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/endian -------------------------------------------------------------------------------- /doc/flag-arguments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/flag-arguments -------------------------------------------------------------------------------- /doc/gnumake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/gnumake -------------------------------------------------------------------------------- /doc/hello_world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/hello_world -------------------------------------------------------------------------------- /doc/keywords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/keywords -------------------------------------------------------------------------------- /doc/libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/libtool -------------------------------------------------------------------------------- /doc/make-tips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/make-tips -------------------------------------------------------------------------------- /doc/pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/pkg-config -------------------------------------------------------------------------------- /doc/sandbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/sandbox -------------------------------------------------------------------------------- /doc/syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/doc/syntax -------------------------------------------------------------------------------- /examples/and.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/and.acr -------------------------------------------------------------------------------- /examples/cflags.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/cflags.acr -------------------------------------------------------------------------------- /examples/chaos.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/chaos.acr -------------------------------------------------------------------------------- /examples/check.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/check.acr -------------------------------------------------------------------------------- /examples/chklibdl.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/chklibdl.acr -------------------------------------------------------------------------------- /examples/contexts.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/contexts.acr -------------------------------------------------------------------------------- /examples/cpu.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/cpu.acr -------------------------------------------------------------------------------- /examples/endian.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/endian.acr -------------------------------------------------------------------------------- /examples/if.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/if.acr -------------------------------------------------------------------------------- /examples/ifeqval.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/ifeqval.acr -------------------------------------------------------------------------------- /examples/perl.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/perl.acr -------------------------------------------------------------------------------- /examples/pkgcfg.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/pkgcfg.acr -------------------------------------------------------------------------------- /examples/python.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/python.acr -------------------------------------------------------------------------------- /examples/ruby.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/ruby.acr -------------------------------------------------------------------------------- /examples/sdl.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/sdl.acr -------------------------------------------------------------------------------- /examples/sizeof.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/sizeof.acr -------------------------------------------------------------------------------- /examples/vala.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/vala.acr -------------------------------------------------------------------------------- /examples/x11.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/examples/x11.acr -------------------------------------------------------------------------------- /man/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/man/Makefile -------------------------------------------------------------------------------- /man/man1/acr-cat.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/man/man1/acr-cat.1 -------------------------------------------------------------------------------- /man/man1/acr-wrap.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/man/man1/acr-wrap.1 -------------------------------------------------------------------------------- /man/man1/acr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/man/man1/acr.1 -------------------------------------------------------------------------------- /man/man1/amr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/man/man1/amr.1 -------------------------------------------------------------------------------- /man/man1/install-acr.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/man/man1/install-acr.1 -------------------------------------------------------------------------------- /man/man5/configure.acr.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/man/man5/configure.acr.5 -------------------------------------------------------------------------------- /man/man5/configure.amr.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/man/man5/configure.amr.5 -------------------------------------------------------------------------------- /modules/csharp.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/modules/csharp.acr -------------------------------------------------------------------------------- /modules/java-gtk.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/modules/java-gtk.acr -------------------------------------------------------------------------------- /modules/sizes.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/modules/sizes.acr -------------------------------------------------------------------------------- /src/acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/acr -------------------------------------------------------------------------------- /src/acr-cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/acr-cat -------------------------------------------------------------------------------- /src/acr-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/acr-install -------------------------------------------------------------------------------- /src/acr-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/acr-sh -------------------------------------------------------------------------------- /src/acr-wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/acr-wrap -------------------------------------------------------------------------------- /src/amr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/amr -------------------------------------------------------------------------------- /src/vim/ftplugin/acr.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/vim/ftplugin/acr.vim -------------------------------------------------------------------------------- /src/vim/install.sh.acr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/vim/install.sh.acr -------------------------------------------------------------------------------- /src/vim/syntax/acr.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/vim/syntax/acr.vim -------------------------------------------------------------------------------- /src/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/src/vim/vimrc -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | sh test.sh 3 | -------------------------------------------------------------------------------- /tests/bug-eof.acr: -------------------------------------------------------------------------------- 1 | REPORT 2 | -------------------------------------------------------------------------------- /tests/test-triplet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/tests/test-triplet.sh -------------------------------------------------------------------------------- /tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/radareorg/acr/HEAD/tests/test.sh --------------------------------------------------------------------------------