Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
alexbevi
GitHub Repository: alexbevi/BizHawk
Path: blob/master/yabause/src/cs1.h
2 views
1
/* Copyright 2003-2005 Guillaume Duhamel
2
Copyright 2005 Theo Berkau
3
4
This file is part of Yabause.
5
6
Yabause is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2 of the License, or
9
(at your option) any later version.
10
11
Yabause is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU General Public License for more details.
15
16
You should have received a copy of the GNU General Public License
17
along with Yabause; if not, write to the Free Software
18
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19
*/
20
21
#ifndef CS1_H
22
#define CS1_H
23
24
#include "cs0.h"
25
#include "memory.h"
26
27
u8 FASTCALL Cs1ReadByte(u32);
28
u16 FASTCALL Cs1ReadWord(u32);
29
u32 FASTCALL Cs1ReadLong(u32);
30
void FASTCALL Cs1WriteByte(u32, u8);
31
void FASTCALL Cs1WriteWord(u32, u16);
32
void FASTCALL Cs1WriteLong(u32, u32);
33
34
#endif
35
36