Xemu [doxygen]  hyppo 0a42be3a057156924bc1b626a687bd6e27349c45 @ Sat 19 Mar 02:15:11 CET 2022
geos.h
Go to the documentation of this file.
1 /* Part of the Xemu project, please visit: https://github.com/lgblgblgb/xemu
2  Copyright (C)2016-2021 LGB (Gábor Lénárt) <lgblgblgb@gmail.com>
3 
4  This is an odd emulator, emulating a Commodore 64 like machine only for the
5  level needed for a special version of GEOS to be able to run on it.
6 
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11 
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16 
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
20 
21 #ifndef XEMU_CGEOS_GEOS_H_INCLUDED
22 #define XEMU_CGEOS_GEOS_H_INCLUDED
23 
24 
25 extern Uint8 memory[];
26 extern Uint8 colour_sram[];
27 
28 extern int geos_load_kernal ( const char *kernal_image_name );
29 extern void geos_cpu_trap ( Uint8 opcode );
30 extern void inject_screencoded_message ( int addr, const char *s );
31 
32 #endif
geos_cpu_trap
void geos_cpu_trap(Uint8 opcode)
Definition: geos.c:116
addr
int addr
Definition: dma65.c:81
geos_load_kernal
int geos_load_kernal(const char *kernal_image_name)
Definition: geos.c:89
Uint8
uint8_t Uint8
Definition: fat32.c:51
inject_screencoded_message
void inject_screencoded_message(int addr, const char *s)
Definition: geos.c:48
colour_sram
Uint8 colour_sram[]
Definition: commodore_geos.c:117
memory
Uint8 memory[]
Definition: commodore_65.c:43