mirror of
https://github.com/kbeckmann/game-and-watch-retro-go.git
synced 2025-12-17 19:16:02 +01:00
31 lines
437 B
C
31 lines
437 B
C
#pragma once
|
|
|
|
#include "stm32h7xx_hal.h"
|
|
|
|
|
|
#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>
|
|
|
|
#include "crc32.h"
|
|
|
|
#define IEXTFLASH_ATTR
|
|
#define DEXTFLASH_ATTR
|
|
|
|
#define IRAM_ATTR
|
|
#define DRAM_ATTR
|
|
|
|
#ifndef DEBUG_RG_ALLOC
|
|
|
|
#define rg_alloc(x, y) malloc(x)
|
|
#define rg_free(x) free(x)
|
|
|
|
#endif
|