-
Notifications
You must be signed in to change notification settings - Fork 6
/
vram.h
51 lines (44 loc) · 1.07 KB
/
vram.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* Copyright (C) 2023 nukeykt
*
* This file is part of Nuked-MD.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* VRAM high-level emulation
*
*/
#pragma once
#pragma pack(push, 1)
typedef struct {
int ras;
int cas;
int we0;
int oe1;
int sc;
int se0;
int ad;
int rd;
} vram_input_t;
typedef struct {
vram_input_t vram_input, vram_input_o;
int vram[64 * 1024];
int vram_page[256];
int vram_addr;
int vram_dt;
int vram_addr_ser;
int vram_ser;
int vram_addr_o;
} vram_bank_t;
#pragma pack(pop)
void update_vram();
int vram_save(FILE* f);
int vram_load(FILE* f);