~ubuntu-branches/ubuntu/dapper/vice/dapper

« back to all changes in this revision

Viewing changes to src/c128/z80mem.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2004-08-26 13:35:51 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20040826133551-gcje8j31q5cqgdq2
Tags: 1.14-3
Apply patch from Spiro Trikaliotis <vice@trikaliotis.net> to fix a
problem that some users were experiencing with a floating point
exception on startup related to the fullscreen option being enabled
during compile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * z80mem.h
3
3
 *
4
4
 * Written by
5
 
 *  Andreas Boose <boose@linux.rz.fh-hannover.de>
 
5
 *  Andreas Boose <viceteam@t-online.de>
6
6
 *
7
7
 * This file is part of VICE, the Versatile Commodore Emulator.
8
8
 * See README for copyright notice.
37
37
extern void z80mem_update_config(int config);
38
38
 
39
39
extern int z80mem_load(void);
 
40
extern BYTE z80bios_rom[0x1000];
40
41
 
41
42
extern void z80mem_initialize(void);
42
43
 
46
47
extern BYTE **_z80mem_read_base_tab_ptr;
47
48
extern int *z80mem_read_limit_tab_ptr;
48
49
 
49
 
extern BYTE REGPARM1 bios_read(ADDRESS addr);
50
 
extern void REGPARM2 bios_store(ADDRESS addr, BYTE value);
 
50
extern BYTE REGPARM1 bios_read(WORD addr);
 
51
extern void REGPARM2 bios_store(WORD addr, BYTE value);
51
52
 
52
53
extern store_func_ptr_t io_write_tab[];
53
54
extern read_func_ptr_t io_read_tab[];