bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 1 | /* |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 2 | * QEMU Proxy for OPL2/3 emulation by MAME team |
| 3 | * |
| 4 | * Copyright (c) 2004-2005 Vassili Karpov (malc) |
| 5 | * |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | * of this software and associated documentation files (the "Software"), to deal |
| 8 | * in the Software without restriction, including without limitation the rights |
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | * copies of the Software, and to permit persons to whom the Software is |
| 11 | * furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | * THE SOFTWARE. |
| 23 | */ |
ths | 9f0683d | 2007-12-02 17:47:33 +0000 | [diff] [blame] | 24 | |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 25 | #include "hw.h" |
| 26 | #include "audiodev.h" |
ths | e140e05 | 2007-12-02 17:17:45 +0000 | [diff] [blame] | 27 | #include "audio/audio.h" |
ths | 69b3497 | 2007-12-17 03:15:52 +0000 | [diff] [blame] | 28 | #include "isa.h" |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 29 | |
ths | 9f0683d | 2007-12-02 17:47:33 +0000 | [diff] [blame] | 30 | //#define DEBUG |
| 31 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 32 | #define ADLIB_KILL_TIMERS 1 |
| 33 | |
ths | 9f0683d | 2007-12-02 17:47:33 +0000 | [diff] [blame] | 34 | #ifdef DEBUG |
| 35 | #include "qemu-timer.h" |
| 36 | #endif |
| 37 | |
bellard | fb06518 | 2004-11-09 23:09:44 +0000 | [diff] [blame] | 38 | #define dolog(...) AUD_log ("adlib", __VA_ARGS__) |
| 39 | #ifdef DEBUG |
| 40 | #define ldebug(...) dolog (__VA_ARGS__) |
| 41 | #else |
| 42 | #define ldebug(...) |
| 43 | #endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 44 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 45 | #ifdef HAS_YMF262 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 46 | #include "ymf262.h" |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 47 | void YMF262UpdateOneQEMU (int which, INT16 *dst, int length); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 48 | #define SHIFT 2 |
| 49 | #else |
| 50 | #include "fmopl.h" |
| 51 | #define SHIFT 1 |
| 52 | #endif |
| 53 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 54 | #define IO_READ_PROTO(name) \ |
| 55 | uint32_t name (void *opaque, uint32_t nport) |
| 56 | #define IO_WRITE_PROTO(name) \ |
| 57 | void name (void *opaque, uint32_t nport, uint32_t val) |
| 58 | |
| 59 | static struct { |
| 60 | int port; |
| 61 | int freq; |
| 62 | } conf = {0x220, 44100}; |
| 63 | |
| 64 | typedef struct { |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 65 | QEMUSoundCard card; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 66 | int ticking[2]; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 67 | int enabled; |
| 68 | int active; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 69 | int bufpos; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 70 | #ifdef DEBUG |
| 71 | int64_t exp[2]; |
| 72 | #endif |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 73 | int16_t *mixbuf; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 74 | uint64_t dexp[2]; |
| 75 | SWVoiceOut *voice; |
| 76 | int left, pos, samples; |
| 77 | QEMUAudioTimeStamp ats; |
| 78 | #ifndef HAS_YMF262 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 79 | FM_OPL *opl; |
| 80 | #endif |
| 81 | } AdlibState; |
| 82 | |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 83 | static AdlibState glob_adlib; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 84 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 85 | static void adlib_stop_opl_timer (AdlibState *s, size_t n) |
| 86 | { |
| 87 | #ifdef HAS_YMF262 |
| 88 | YMF262TimerOver (0, n); |
| 89 | #else |
| 90 | OPLTimerOver (s->opl, n); |
| 91 | #endif |
| 92 | s->ticking[n] = 0; |
| 93 | } |
| 94 | |
| 95 | static void adlib_kill_timers (AdlibState *s) |
| 96 | { |
| 97 | size_t i; |
| 98 | |
| 99 | for (i = 0; i < 2; ++i) { |
| 100 | if (s->ticking[i]) { |
| 101 | uint64_t delta; |
| 102 | |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 103 | delta = AUD_get_elapsed_usec_out (s->voice, &s->ats); |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 104 | ldebug ( |
| 105 | "delta = %f dexp = %f expired => %d\n", |
| 106 | delta / 1000000.0, |
| 107 | s->dexp[i] / 1000000.0, |
| 108 | delta >= s->dexp[i] |
| 109 | ); |
| 110 | if (ADLIB_KILL_TIMERS || delta >= s->dexp[i]) { |
| 111 | adlib_stop_opl_timer (s, i); |
| 112 | AUD_init_time_stamp_out (s->voice, &s->ats); |
| 113 | } |
| 114 | } |
| 115 | } |
| 116 | } |
| 117 | |
malc | d999f7e | 2009-06-20 05:13:29 +0400 | [diff] [blame] | 118 | static IO_WRITE_PROTO (adlib_write) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 119 | { |
| 120 | AdlibState *s = opaque; |
| 121 | int a = nport & 3; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 122 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 123 | s->active = 1; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 124 | AUD_set_active_out (s->voice, 1); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 125 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 126 | adlib_kill_timers (s); |
| 127 | |
| 128 | #ifdef HAS_YMF262 |
Hervé Poussineau | e8beeae | 2011-09-18 16:27:23 +0200 | [diff] [blame] | 129 | YMF262Write (0, a, val); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 130 | #else |
Hervé Poussineau | e8beeae | 2011-09-18 16:27:23 +0200 | [diff] [blame] | 131 | OPLWrite (s->opl, a, val); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 132 | #endif |
| 133 | } |
| 134 | |
malc | d999f7e | 2009-06-20 05:13:29 +0400 | [diff] [blame] | 135 | static IO_READ_PROTO (adlib_read) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 136 | { |
| 137 | AdlibState *s = opaque; |
| 138 | uint8_t data; |
| 139 | int a = nport & 3; |
| 140 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 141 | adlib_kill_timers (s); |
| 142 | |
| 143 | #ifdef HAS_YMF262 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 144 | data = YMF262Read (0, a); |
| 145 | #else |
| 146 | data = OPLRead (s->opl, a); |
| 147 | #endif |
| 148 | return data; |
| 149 | } |
| 150 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 151 | static void timer_handler (int c, double interval_Sec) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 152 | { |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 153 | AdlibState *s = &glob_adlib; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 154 | unsigned n = c & 1; |
| 155 | #ifdef DEBUG |
| 156 | double interval; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 157 | int64_t exp; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 158 | #endif |
| 159 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 160 | if (interval_Sec == 0.0) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 161 | s->ticking[n] = 0; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 162 | return; |
| 163 | } |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 164 | |
| 165 | s->ticking[n] = 1; |
| 166 | #ifdef DEBUG |
malc | cf4dc46 | 2012-02-07 22:11:04 +0400 | [diff] [blame] | 167 | interval = get_ticks_per_sec () * interval_Sec; |
Paolo Bonzini | 7447545 | 2011-03-11 16:47:48 +0100 | [diff] [blame] | 168 | exp = qemu_get_clock_ns (vm_clock) + interval; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 169 | s->exp[n] = exp; |
| 170 | #endif |
| 171 | |
| 172 | s->dexp[n] = interval_Sec * 1000000.0; |
| 173 | AUD_init_time_stamp_out (s->voice, &s->ats); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 174 | } |
| 175 | |
| 176 | static int write_audio (AdlibState *s, int samples) |
| 177 | { |
| 178 | int net = 0; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 179 | int pos = s->pos; |
| 180 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 181 | while (samples) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 182 | int nbytes, wbytes, wsampl; |
| 183 | |
| 184 | nbytes = samples << SHIFT; |
| 185 | wbytes = AUD_write ( |
| 186 | s->voice, |
| 187 | s->mixbuf + (pos << (SHIFT - 1)), |
| 188 | nbytes |
| 189 | ); |
| 190 | |
| 191 | if (wbytes) { |
| 192 | wsampl = wbytes >> SHIFT; |
| 193 | |
| 194 | samples -= wsampl; |
| 195 | pos = (pos + wsampl) % s->samples; |
| 196 | |
| 197 | net += wsampl; |
| 198 | } |
| 199 | else { |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 200 | break; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 201 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 202 | } |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 203 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 204 | return net; |
| 205 | } |
| 206 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 207 | static void adlib_callback (void *opaque, int free) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 208 | { |
| 209 | AdlibState *s = opaque; |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 210 | int samples, net = 0, to_play, written; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 211 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 212 | samples = free >> SHIFT; |
| 213 | if (!(s->active && s->enabled) || !samples) { |
| 214 | return; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 215 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 216 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 217 | to_play = audio_MIN (s->left, samples); |
| 218 | while (to_play) { |
| 219 | written = write_audio (s, to_play); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 220 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 221 | if (written) { |
| 222 | s->left -= written; |
| 223 | samples -= written; |
| 224 | to_play -= written; |
| 225 | s->pos = (s->pos + written) % s->samples; |
| 226 | } |
| 227 | else { |
| 228 | return; |
| 229 | } |
| 230 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 231 | |
| 232 | samples = audio_MIN (samples, s->samples - s->pos); |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 233 | if (!samples) { |
| 234 | return; |
| 235 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 236 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 237 | #ifdef HAS_YMF262 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 238 | YMF262UpdateOneQEMU (0, s->mixbuf + s->pos * 2, samples); |
| 239 | #else |
| 240 | YM3812UpdateOne (s->opl, s->mixbuf + s->pos, samples); |
| 241 | #endif |
| 242 | |
| 243 | while (samples) { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 244 | written = write_audio (s, samples); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 245 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 246 | if (written) { |
| 247 | net += written; |
| 248 | samples -= written; |
| 249 | s->pos = (s->pos + written) % s->samples; |
| 250 | } |
| 251 | else { |
| 252 | s->left = samples; |
| 253 | return; |
| 254 | } |
| 255 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | static void Adlib_fini (AdlibState *s) |
| 259 | { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 260 | #ifdef HAS_YMF262 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 261 | YMF262Shutdown (); |
| 262 | #else |
| 263 | if (s->opl) { |
| 264 | OPLDestroy (s->opl); |
| 265 | s->opl = NULL; |
| 266 | } |
| 267 | #endif |
| 268 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 269 | if (s->mixbuf) { |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 270 | g_free (s->mixbuf); |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 271 | } |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 272 | |
| 273 | s->active = 0; |
| 274 | s->enabled = 0; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 275 | AUD_remove_card (&s->card); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 276 | } |
| 277 | |
Hervé Poussineau | 4a0f031 | 2011-12-15 22:10:01 +0100 | [diff] [blame] | 278 | int Adlib_init (ISABus *bus) |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 279 | { |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 280 | AdlibState *s = &glob_adlib; |
malc | 1ea879e | 2008-12-03 22:48:44 +0000 | [diff] [blame] | 281 | struct audsettings as; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 282 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 283 | #ifdef HAS_YMF262 |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 284 | if (YMF262Init (1, 14318180, conf.freq)) { |
| 285 | dolog ("YMF262Init %d failed\n", conf.freq); |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 286 | return -1; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 287 | } |
| 288 | else { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 289 | YMF262SetTimerHandler (0, timer_handler, 0); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 290 | s->enabled = 1; |
| 291 | } |
| 292 | #else |
| 293 | s->opl = OPLCreate (OPL_TYPE_YM3812, 3579545, conf.freq); |
| 294 | if (!s->opl) { |
| 295 | dolog ("OPLCreate %d failed\n", conf.freq); |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 296 | return -1; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 297 | } |
| 298 | else { |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 299 | OPLSetTimerHandler (s->opl, timer_handler, 0); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 300 | s->enabled = 1; |
| 301 | } |
| 302 | #endif |
| 303 | |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 304 | as.freq = conf.freq; |
| 305 | as.nchannels = SHIFT; |
| 306 | as.fmt = AUD_FMT_S16; |
bellard | d929eba | 2006-07-04 21:47:22 +0000 | [diff] [blame] | 307 | as.endianness = AUDIO_HOST_ENDIANNESS; |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 308 | |
malc | 1a7dafc | 2009-05-14 03:11:35 +0400 | [diff] [blame] | 309 | AUD_register_card ("adlib", &s->card); |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 310 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 311 | s->voice = AUD_open_out ( |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 312 | &s->card, |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 313 | s->voice, |
| 314 | "adlib", |
| 315 | s, |
| 316 | adlib_callback, |
bellard | d929eba | 2006-07-04 21:47:22 +0000 | [diff] [blame] | 317 | &as |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 318 | ); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 319 | if (!s->voice) { |
| 320 | Adlib_fini (s); |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 321 | return -1; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 322 | } |
| 323 | |
bellard | 1d14ffa | 2005-10-30 18:58:22 +0000 | [diff] [blame] | 324 | s->samples = AUD_get_buffer_size_out (s->voice) >> SHIFT; |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 325 | s->mixbuf = g_malloc0 (s->samples << SHIFT); |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 326 | |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 327 | register_ioport_read (0x388, 4, 1, adlib_read, s); |
| 328 | register_ioport_write (0x388, 4, 1, adlib_write, s); |
| 329 | |
| 330 | register_ioport_read (conf.port, 4, 1, adlib_read, s); |
| 331 | register_ioport_write (conf.port, 4, 1, adlib_write, s); |
| 332 | |
| 333 | register_ioport_read (conf.port + 8, 2, 1, adlib_read, s); |
| 334 | register_ioport_write (conf.port + 8, 2, 1, adlib_write, s); |
bellard | c0fe382 | 2005-11-05 18:55:28 +0000 | [diff] [blame] | 335 | |
| 336 | return 0; |
bellard | 85571bc | 2004-11-07 18:04:02 +0000 | [diff] [blame] | 337 | } |