mirror of
https://github.com/marian-m12l/game-and-watch-zelda3.git
synced 2025-12-17 07:16:05 +01:00
28 lines
413 B
C
28 lines
413 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 <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <signal.h>
|
|
#include <malloc.h>
|
|
#include <math.h>
|
|
#include <limits.h>
|
|
|
|
|
|
uint32_t HAL_GetTick(void);
|
|
void wdog_refresh(void);
|