~ubuntu-branches/ubuntu/maverick/vice/maverick

« back to all changes in this revision

Viewing changes to src/drive/drivetypes.h

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050201113026-3eyakzsmmheclvjg
Tags: 1.16-1
* New upstream version
* Fixes crash on 64-bit architectures (closes: #287640)
* x128 working again (closes: #286767)
* Works fine with /dev/dsp in use (not in the main changelog, but tested
  on my local machine as working).  Presumably, this also takes care of
  the issue with dsp being held.  I'm not sure if this is because I'm
  testing it on a 2.6 kernel now -- if you are still having problems
  with /dev/dsp, please reopen the bugs. (closes: #152952, #207942)
* Don't kill Makefile.in on clean

Show diffs side-by-side

added added

removed removed

Lines of Context:
132
132
 */
133
133
 
134
134
typedef struct drivefunc_context_s {
135
 
    void (*iec_write)(BYTE);
136
 
    BYTE (*iec_read)(void);
137
135
    void (*parallel_set_bus)(BYTE);
138
136
    void (*parallel_set_eoi)(BYTE); /* we may be able to eleminate these... */
139
137
    void (*parallel_set_dav)(BYTE);
140
138
    void (*parallel_set_ndac)(BYTE);
141
139
    void (*parallel_set_nrfd)(BYTE);
142
 
    void (*parallel_cable_write)(BYTE, int);
143
140
} drivefunc_context_t;
144
141
 
145
142