├── .gitignore ├── MAInvocation-asm.h ├── MAInvocation-asm.s ├── MAInvocation.h ├── MAInvocation.m └── tester.m /.gitignore: -------------------------------------------------------------------------------- 1 | a.out 2 | *.dSYM 3 | -------------------------------------------------------------------------------- /MAInvocation-asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MAInvocation/HEAD/MAInvocation-asm.h -------------------------------------------------------------------------------- /MAInvocation-asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MAInvocation/HEAD/MAInvocation-asm.s -------------------------------------------------------------------------------- /MAInvocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MAInvocation/HEAD/MAInvocation.h -------------------------------------------------------------------------------- /MAInvocation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MAInvocation/HEAD/MAInvocation.m -------------------------------------------------------------------------------- /tester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikeash/MAInvocation/HEAD/tester.m --------------------------------------------------------------------------------