├── .gitignore ├── Makefile ├── README.md ├── mac-improved ├── Makefile ├── README.md ├── mac.c ├── sum200.mac └── test.mac └── mac.c /.gitignore: -------------------------------------------------------------------------------- 1 | #*# 2 | mac 3 | .o 4 | *.dSYM/ -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixangell/mac/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixangell/mac/HEAD/README.md -------------------------------------------------------------------------------- /mac-improved/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixangell/mac/HEAD/mac-improved/Makefile -------------------------------------------------------------------------------- /mac-improved/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixangell/mac/HEAD/mac-improved/README.md -------------------------------------------------------------------------------- /mac-improved/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixangell/mac/HEAD/mac-improved/mac.c -------------------------------------------------------------------------------- /mac-improved/sum200.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixangell/mac/HEAD/mac-improved/sum200.mac -------------------------------------------------------------------------------- /mac-improved/test.mac: -------------------------------------------------------------------------------- 1 | 1 5 1 1 2 | 3 11 1 9 3 | 1 0 4 | -------------------------------------------------------------------------------- /mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felixangell/mac/HEAD/mac.c --------------------------------------------------------------------------------