├── .gitignore ├── .markdownlint.json ├── .vscode ├── launch.json ├── settings.json ├── sftp.json └── tasks.json ├── README.md ├── README_old.md ├── braces ├── braces.md ├── braces01.jpg ├── if01s.png └── while01s.png ├── float ├── README.md ├── fregs.svg ├── test.c ├── vector01.s └── vregs.svg ├── for ├── for.jpeg ├── for.md ├── for01.cpp ├── for01c.png ├── for02.cpp ├── for02c.png ├── for03.s ├── for03s.png ├── for04.s ├── for04s.png ├── for05.s ├── for05s.png ├── for06.s └── for06s.png ├── func ├── f01.c ├── f02.s ├── f03.c ├── f04.s ├── func.md ├── func01.png ├── func02.png ├── func03.png ├── func04.png ├── func05.png ├── func06.png ├── func07.png ├── func08.png ├── func09.png └── func10.png ├── hello_world ├── argv.png ├── helloworld.md ├── output.png ├── v1.cpp ├── v1.png ├── v2.cpp ├── v2.png ├── v3.cpp ├── v3.png ├── v4.c ├── v4.png ├── v5.png └── v5.s ├── if ├── if.md ├── if01.c ├── if01c.png ├── if01s.png ├── if02.s ├── if02c.png ├── if02s.png ├── if03.cpp ├── if03s.png ├── if04.s └── if05.s ├── interop ├── inter01.png ├── inter02.png ├── interop.md ├── mangle.cpp └── mangle.s ├── lib ├── foo.c ├── hw.s ├── libs.md ├── syscall01.s ├── syscall02.c └── syscall03.s ├── m.jpg ├── regs ├── Neon-lanes-and-elements.png ├── align.s ├── array01.c ├── array01.s ├── array02.c ├── array02.s ├── array03.s ├── array10.c ├── array10.s ├── array11.s ├── backup.md ├── badstack.s ├── bar.c ├── cast.c ├── cast.s ├── casting.s ├── crash01.s ├── eggs.jpeg ├── endiness.s ├── foo.s ├── latency.png ├── latency2.png ├── ldr.md ├── regs.md ├── regs.png ├── regtest.c ├── regvar.md ├── spare.md ├── text.txt └── widths.md ├── static ├── static.md ├── static01.c ├── static01.s └── static02.s ├── struct ├── struct.c ├── struct.cpp ├── struct01.png ├── struct02.png ├── struct03.png ├── struct04.png ├── struct_ex.s ├── structs.md ├── test.c └── testasm.s └── while ├── if01s.png ├── if02.s ├── while.jpeg ├── while.md └── while01s.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/sftp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/.vscode/sftp.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/README.md -------------------------------------------------------------------------------- /README_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/README_old.md -------------------------------------------------------------------------------- /braces/braces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/braces/braces.md -------------------------------------------------------------------------------- /braces/braces01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/braces/braces01.jpg -------------------------------------------------------------------------------- /braces/if01s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/braces/if01s.png -------------------------------------------------------------------------------- /braces/while01s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/braces/while01s.png -------------------------------------------------------------------------------- /float/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/float/README.md -------------------------------------------------------------------------------- /float/fregs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/float/fregs.svg -------------------------------------------------------------------------------- /float/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/float/test.c -------------------------------------------------------------------------------- /float/vector01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/float/vector01.s -------------------------------------------------------------------------------- /float/vregs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/float/vregs.svg -------------------------------------------------------------------------------- /for/for.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for.jpeg -------------------------------------------------------------------------------- /for/for.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for.md -------------------------------------------------------------------------------- /for/for01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for01.cpp -------------------------------------------------------------------------------- /for/for01c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for01c.png -------------------------------------------------------------------------------- /for/for02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for02.cpp -------------------------------------------------------------------------------- /for/for02c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for02c.png -------------------------------------------------------------------------------- /for/for03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for03.s -------------------------------------------------------------------------------- /for/for03s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for03s.png -------------------------------------------------------------------------------- /for/for04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for04.s -------------------------------------------------------------------------------- /for/for04s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for04s.png -------------------------------------------------------------------------------- /for/for05.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for05.s -------------------------------------------------------------------------------- /for/for05s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for05s.png -------------------------------------------------------------------------------- /for/for06.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for06.s -------------------------------------------------------------------------------- /for/for06s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/for/for06s.png -------------------------------------------------------------------------------- /func/f01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/f01.c -------------------------------------------------------------------------------- /func/f02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/f02.s -------------------------------------------------------------------------------- /func/f03.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/f03.c -------------------------------------------------------------------------------- /func/f04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/f04.s -------------------------------------------------------------------------------- /func/func.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func.md -------------------------------------------------------------------------------- /func/func01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func01.png -------------------------------------------------------------------------------- /func/func02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func02.png -------------------------------------------------------------------------------- /func/func03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func03.png -------------------------------------------------------------------------------- /func/func04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func04.png -------------------------------------------------------------------------------- /func/func05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func05.png -------------------------------------------------------------------------------- /func/func06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func06.png -------------------------------------------------------------------------------- /func/func07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func07.png -------------------------------------------------------------------------------- /func/func08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func08.png -------------------------------------------------------------------------------- /func/func09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func09.png -------------------------------------------------------------------------------- /func/func10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/func/func10.png -------------------------------------------------------------------------------- /hello_world/argv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/argv.png -------------------------------------------------------------------------------- /hello_world/helloworld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/helloworld.md -------------------------------------------------------------------------------- /hello_world/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/output.png -------------------------------------------------------------------------------- /hello_world/v1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v1.cpp -------------------------------------------------------------------------------- /hello_world/v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v1.png -------------------------------------------------------------------------------- /hello_world/v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v2.cpp -------------------------------------------------------------------------------- /hello_world/v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v2.png -------------------------------------------------------------------------------- /hello_world/v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v3.cpp -------------------------------------------------------------------------------- /hello_world/v3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v3.png -------------------------------------------------------------------------------- /hello_world/v4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v4.c -------------------------------------------------------------------------------- /hello_world/v4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v4.png -------------------------------------------------------------------------------- /hello_world/v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v5.png -------------------------------------------------------------------------------- /hello_world/v5.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/hello_world/v5.s -------------------------------------------------------------------------------- /if/if.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if.md -------------------------------------------------------------------------------- /if/if01.c: -------------------------------------------------------------------------------- 1 | if (a > b) 2 | { 3 | // CODE BLOCK 4 | } -------------------------------------------------------------------------------- /if/if01c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if01c.png -------------------------------------------------------------------------------- /if/if01s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if01s.png -------------------------------------------------------------------------------- /if/if02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if02.s -------------------------------------------------------------------------------- /if/if02c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if02c.png -------------------------------------------------------------------------------- /if/if02s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if02s.png -------------------------------------------------------------------------------- /if/if03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if03.cpp -------------------------------------------------------------------------------- /if/if03s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if03s.png -------------------------------------------------------------------------------- /if/if04.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if04.s -------------------------------------------------------------------------------- /if/if05.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/if/if05.s -------------------------------------------------------------------------------- /interop/inter01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/interop/inter01.png -------------------------------------------------------------------------------- /interop/inter02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/interop/inter02.png -------------------------------------------------------------------------------- /interop/interop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/interop/interop.md -------------------------------------------------------------------------------- /interop/mangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/interop/mangle.cpp -------------------------------------------------------------------------------- /interop/mangle.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/interop/mangle.s -------------------------------------------------------------------------------- /lib/foo.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/hw.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/lib/hw.s -------------------------------------------------------------------------------- /lib/libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/lib/libs.md -------------------------------------------------------------------------------- /lib/syscall01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/lib/syscall01.s -------------------------------------------------------------------------------- /lib/syscall02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/lib/syscall02.c -------------------------------------------------------------------------------- /lib/syscall03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/lib/syscall03.s -------------------------------------------------------------------------------- /m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/m.jpg -------------------------------------------------------------------------------- /regs/Neon-lanes-and-elements.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/Neon-lanes-and-elements.png -------------------------------------------------------------------------------- /regs/align.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/align.s -------------------------------------------------------------------------------- /regs/array01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/array01.c -------------------------------------------------------------------------------- /regs/array01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/array01.s -------------------------------------------------------------------------------- /regs/array02.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/array02.c -------------------------------------------------------------------------------- /regs/array02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/array02.s -------------------------------------------------------------------------------- /regs/array03.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/array03.s -------------------------------------------------------------------------------- /regs/array10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/array10.c -------------------------------------------------------------------------------- /regs/array10.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/array10.s -------------------------------------------------------------------------------- /regs/array11.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/array11.s -------------------------------------------------------------------------------- /regs/backup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/backup.md -------------------------------------------------------------------------------- /regs/badstack.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/badstack.s -------------------------------------------------------------------------------- /regs/bar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/bar.c -------------------------------------------------------------------------------- /regs/cast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/cast.c -------------------------------------------------------------------------------- /regs/cast.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/cast.s -------------------------------------------------------------------------------- /regs/casting.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/casting.s -------------------------------------------------------------------------------- /regs/crash01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/crash01.s -------------------------------------------------------------------------------- /regs/eggs.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/eggs.jpeg -------------------------------------------------------------------------------- /regs/endiness.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/endiness.s -------------------------------------------------------------------------------- /regs/foo.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/foo.s -------------------------------------------------------------------------------- /regs/latency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/latency.png -------------------------------------------------------------------------------- /regs/latency2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/latency2.png -------------------------------------------------------------------------------- /regs/ldr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/ldr.md -------------------------------------------------------------------------------- /regs/regs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/regs.md -------------------------------------------------------------------------------- /regs/regs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/regs.png -------------------------------------------------------------------------------- /regs/regtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/regtest.c -------------------------------------------------------------------------------- /regs/regvar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/regvar.md -------------------------------------------------------------------------------- /regs/spare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/spare.md -------------------------------------------------------------------------------- /regs/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/text.txt -------------------------------------------------------------------------------- /regs/widths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/regs/widths.md -------------------------------------------------------------------------------- /static/static.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/static/static.md -------------------------------------------------------------------------------- /static/static01.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/static/static01.c -------------------------------------------------------------------------------- /static/static01.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/static/static01.s -------------------------------------------------------------------------------- /static/static02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/static/static02.s -------------------------------------------------------------------------------- /struct/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/struct.c -------------------------------------------------------------------------------- /struct/struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/struct.cpp -------------------------------------------------------------------------------- /struct/struct01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/struct01.png -------------------------------------------------------------------------------- /struct/struct02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/struct02.png -------------------------------------------------------------------------------- /struct/struct03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/struct03.png -------------------------------------------------------------------------------- /struct/struct04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/struct04.png -------------------------------------------------------------------------------- /struct/struct_ex.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/struct_ex.s -------------------------------------------------------------------------------- /struct/structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/structs.md -------------------------------------------------------------------------------- /struct/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/test.c -------------------------------------------------------------------------------- /struct/testasm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/struct/testasm.s -------------------------------------------------------------------------------- /while/if01s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/while/if01s.png -------------------------------------------------------------------------------- /while/if02.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/while/if02.s -------------------------------------------------------------------------------- /while/while.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/while/while.jpeg -------------------------------------------------------------------------------- /while/while.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/while/while.md -------------------------------------------------------------------------------- /while/while01s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CCCSBuffet/pk_do_not_be_afraid/HEAD/while/while01s.png --------------------------------------------------------------------------------