Avr8bit-emulator
An emulator for the Atmel AVR 8-bit microcontroller
Loading...
Searching...
No Matches
sram.h
Go to the documentation of this file.
1#pragma once
2#include <stdint.h>
3#include <stdbool.h>
4
5#define SRAM_SIZE 2048
6
7struct SRAM {
8 uint8_t mem[SRAM_SIZE];
9};
#define SRAM_SIZE
Definition sram.h:5
Definition sram.h:7
uint8_t mem[SRAM_SIZE]
Definition sram.h:8