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

« back to all changes in this revision

Viewing changes to src/c64/c64pla.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
 * c64pla.h -- C64 PLA handling.
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.
30
30
#include "types.h"
31
31
 
32
32
struct pport_s {
 
33
    /* Value written to processor port.  */
33
34
    BYTE dir;
34
35
    BYTE data;
 
36
 
 
37
    /* Value read from processor port.  */
 
38
    BYTE dir_read;
 
39
    BYTE data_read;
 
40
 
 
41
    /* State of processor port pins.  */
35
42
    BYTE data_out;
36
43
};
37
44
typedef struct pport_s pport_t;
38
45
 
39
46
extern pport_t pport;
40
47
 
41
 
extern void c64pla_config_changed(int tape_sense, int caps_sense);
 
48
extern void c64pla_config_changed(int tape_sense, int caps_sense, BYTE pullup);
 
49
extern void c64pla_pport_reset(void);
42
50
 
43
51
#endif
44
52