├── .gitignore ├── README.md ├── basic-control-flow └── basic-control-flow.asm ├── basic-printf └── printf.asm ├── bin ├── execute.sh ├── writable-text └── writable-text.c ├── factorial ├── factorial-mod.asm └── factorial.asm └── hello world └── hello.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/README.md -------------------------------------------------------------------------------- /basic-control-flow/basic-control-flow.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/basic-control-flow/basic-control-flow.asm -------------------------------------------------------------------------------- /basic-printf/printf.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/basic-printf/printf.asm -------------------------------------------------------------------------------- /bin/execute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/bin/execute.sh -------------------------------------------------------------------------------- /bin/writable-text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/bin/writable-text -------------------------------------------------------------------------------- /bin/writable-text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/bin/writable-text.c -------------------------------------------------------------------------------- /factorial/factorial-mod.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/factorial/factorial-mod.asm -------------------------------------------------------------------------------- /factorial/factorial.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/factorial/factorial.asm -------------------------------------------------------------------------------- /hello world/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BrianStadnicki/self-modifying-assembly-examples/HEAD/hello world/hello.asm --------------------------------------------------------------------------------