cscg22-gearboy

CSCG 2022 Challenge 'Gearboy'
git clone https://git.sinitax.com/sinitax/cscg22-gearboy
Log | Files | Refs | sfeed.txt

crash.c (152B)


      1#include <gb/crash_handler.h>
      2
      3typedef void (*somefunc_t)(void);
      4
      5void main() {
      6    ((somefunc_t)0x3000)(); // call something in the middle of nowhere
      7}