I hereby claim:
- I am CreeperMario on github.
- I am creepermario (https://keybase.io/creepermario) on keybase.
- I have a public key whose fingerprint is C165 3A13 45E3 B18C B663 4451 DD86 B4E0 3501 DD04
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python | |
| import struct | |
| import os | |
| def readByte(file): | |
| return struct.unpack("B", file.read(1))[0] | |
| def readu16le(file): | |
| return struct.unpack("<H", file.read(2))[0] |
| cmake_minimum_required(VERSION 3.2) | |
| project(thread-example) | |
| include("$ENV{WUT_ROOT}/share/wut.cmake" REQUIRED) | |
| add_executable(thread-example.elf thread-example.c) | |
| target_link_libraries(thread-example.elf | |
| whb | |
| coreinit | |
| nsysnet | |
| sysapp) |
| cmake_minimum_required(VERSION 3.2) | |
| project(glitchy-rectangle C) | |
| include("${WUT_ROOT}/share/wut.cmake" REQUIRED) | |
| add_executable(glitchy-rectangle | |
| glitchy-rectangle.c) | |
| target_link_libraries(glitchy-rectangle | |
| whb | |
| gfd |
| #include <string.h> | |
| #include <stdarg.h> | |
| #include <stdlib.h> | |
| #include <malloc.h> | |
| #include <unistd.h> | |
| #include "dynamic_libs/os_functions.h" | |
| #include "dynamic_libs/fs_functions.h" | |
| #include "dynamic_libs/gx2_functions.h" | |
| #include "dynamic_libs/sys_functions.h" | |
| #include "dynamic_libs/vpad_functions.h" |