mirror of
https://github.com/sylverb/game-and-watch-retro-go.git
synced 2026-01-12 08:29:29 +01:00
28 lines
416 B
C
28 lines
416 B
C
#pragma once
|
|
|
|
#define IEXTFLASH_ATTR
|
|
#define DEXTFLASH_ATTR
|
|
|
|
#define IRAM_ATTR
|
|
#define DRAM_ATTR
|
|
|
|
#define rg_alloc(x, y) malloc(x)
|
|
#define rg_free(x) free(x)
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
#include <sys/types.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <signal.h>
|
|
#include <math.h>
|
|
#include <limits.h>
|
|
|
|
|
|
uint32_t HAL_GetTick(void);
|
|
void wdog_refresh(void);
|