Skip to content

Instantly share code, notes, and snippets.

View CreeperMario's full-sized avatar

CreeperMario CreeperMario

  • Adelaide, South Australia
View GitHub Profile

Keybase proof

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:

@CreeperMario
CreeperMario / metaverify.py
Created March 31, 2019 11:26
Verifies the TGA files for Wii U packaged games - I think this was made by Zarklord, but I can't find the download link
#!/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]
@CreeperMario
CreeperMario / CMakeLists.txt
Created January 6, 2019 23:54
An example of how cooperative threading works on the Wii U, with an analogy to help explain.
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)
@CreeperMario
CreeperMario / CMakeLists.txt
Created June 9, 2018 06:59
My first attempt at "seriously" using GX2.
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
@CreeperMario
CreeperMario / main.c
Created October 9, 2016 20:34
IOSU ROP Haxx Ported to HBL - to use this download https://github.com/dimok789/hello_world and replace the main.c and main.h files with the ones here
#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"