/* Copyright 2003-2005 Guillaume Duhamel1Copyright 2005 Theo Berkau23This file is part of Yabause.45Yabause is free software; you can redistribute it and/or modify6it under the terms of the GNU General Public License as published by7the Free Software Foundation; either version 2 of the License, or8(at your option) any later version.910Yabause is distributed in the hope that it will be useful,11but WITHOUT ANY WARRANTY; without even the implied warranty of12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13GNU General Public License for more details.1415You should have received a copy of the GNU General Public License16along with Yabause; if not, write to the Free Software17Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA18*/1920#ifndef CS1_H21#define CS1_H2223#include "cs0.h"24#include "memory.h"2526u8 FASTCALL Cs1ReadByte(u32);27u16 FASTCALL Cs1ReadWord(u32);28u32 FASTCALL Cs1ReadLong(u32);29void FASTCALL Cs1WriteByte(u32, u8);30void FASTCALL Cs1WriteWord(u32, u16);31void FASTCALL Cs1WriteLong(u32, u32);3233#endif343536