2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
2011-02-25 01:05:47 +03:00
|
|
|
// $Id$
|
2001-10-03 17:10:38 +04:00
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2015-01-08 22:12:01 +03:00
|
|
|
// Copyright (C) 2001-2015 The Bochs Project
|
2001-04-10 05:04:59 +04:00
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
2009-02-08 12:05:52 +03:00
|
|
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2011-01-26 02:29:08 +03:00
|
|
|
// The original version of the SB16 support written and donated by Josef Drexler
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2006-03-07 21:16:41 +03:00
|
|
|
#ifndef BX_IODEV_SB16_H
|
|
|
|
#define BX_IODEV_SB16_H
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if BX_USE_SB16_SMF
|
|
|
|
# define BX_SB16_SMF static
|
2002-11-13 21:39:41 +03:00
|
|
|
# define BX_SB16_THIS theSB16Device->
|
|
|
|
# define BX_SB16_THISP (theSB16Device)
|
2001-04-10 05:04:59 +04:00
|
|
|
#else
|
|
|
|
# define BX_SB16_SMF
|
|
|
|
# define BX_SB16_THIS this->
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
# define BX_SB16_THISP (this)
|
2001-04-10 05:04:59 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// If the buffer commands are to be inlined:
|
2001-04-10 06:10:09 +04:00
|
|
|
#define BX_SB16_BUFINL BX_CPP_INLINE
|
|
|
|
// BX_CPP_INLINE is defined to the inline keyword for the C++ compiler.
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// maximum number of patch translations
|
|
|
|
#define BX_SB16_PATCHTABLESIZE 1024
|
|
|
|
|
|
|
|
// the resources. Of these, IRQ and DMA's can be changed via a DSP command
|
|
|
|
#define BX_SB16_IO 0x220 // IO base address of DSP, mixer & FM part
|
|
|
|
#define BX_SB16_IOLEN 16 // number of addresses covered
|
|
|
|
#define BX_SB16_IOMPU 0x330 // IO base address of MPU402 part
|
|
|
|
#define BX_SB16_IOMPULEN 4 // number of addresses covered
|
|
|
|
#define BX_SB16_IOADLIB 0x388 // equivalent to 0x220..0x223 and 0x228..0x229
|
|
|
|
#define BX_SB16_IOADLIBLEN 4 // number of addresses covered
|
2002-11-13 21:39:41 +03:00
|
|
|
#define BX_SB16_IRQ theSB16Device->currentirq
|
2001-04-10 05:04:59 +04:00
|
|
|
#define BX_SB16_IRQMPU BX_SB16_IRQ // IRQ for the MPU401 part - same value
|
2002-11-13 21:39:41 +03:00
|
|
|
#define BX_SB16_DMAL theSB16Device->currentdma8
|
|
|
|
#define BX_SB16_DMAH theSB16Device->currentdma16
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
A few notes:
|
|
|
|
IRQ, DMA8bit and DMA16bit are for the DSP part. These
|
|
|
|
are changeable at runtime in mixer registers 0x80 and 0x81.
|
|
|
|
The defaults after a mixer initialization are IRQ 5, DMA8 1, no DMA16
|
|
|
|
|
|
|
|
Any of the address lengths can be zero to disable that particular
|
|
|
|
subdevice. Turning off the DSP still leaves FM music enabled on the
|
|
|
|
BX_SB16_IOADLIB ports, unless those are disabled as well.
|
2008-01-27 01:24:03 +03:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SB16_IOMPULEN should be 4 or 2. In the latter case, the emulator
|
|
|
|
is completely invisible, and runtime changes are not possible
|
|
|
|
|
|
|
|
BX_SB16_IOADLIBLEN should be 2 or 4. If 0, Ports 0x388.. don't
|
2008-01-27 01:24:03 +03:00
|
|
|
get used, but the OPL2 can still be accessed at 0x228..0x229.
|
2001-04-10 05:04:59 +04:00
|
|
|
If 2, the usual Adlib emulation is enabled. If 4, an OPL3 is
|
|
|
|
emulated at adresses 0x388..0x38b, or two separate OPL2's.
|
|
|
|
*/
|
|
|
|
|
2003-12-20 20:04:08 +03:00
|
|
|
#define BX_SB16_MIX_REG 0x100 // total number of mixer registers
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// The array containing an instrument/bank remapping
|
|
|
|
struct bx_sb16_ins_map {
|
|
|
|
Bit8u oldbankmsb, oldbanklsb, oldprogch;
|
|
|
|
Bit8u newbankmsb, newbanklsb, newprogch;
|
|
|
|
};
|
|
|
|
|
|
|
|
// This is the class for the input and
|
|
|
|
// output FIFO buffers of the SB16
|
|
|
|
|
|
|
|
class bx_sb16_buffer {
|
|
|
|
public:
|
|
|
|
|
2006-05-06 19:19:57 +04:00
|
|
|
BX_SB16_BUFINL bx_sb16_buffer(void);
|
|
|
|
BX_SB16_BUFINL ~bx_sb16_buffer();
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SB16_BUFINL void init(int bufferlen);
|
|
|
|
BX_SB16_BUFINL void reset();
|
|
|
|
|
|
|
|
/* These functions return 1 on success and 0 on error */
|
2002-10-25 15:44:41 +04:00
|
|
|
BX_SB16_BUFINL bx_bool put(Bit8u data); // write one byte in the buffer
|
2008-12-11 21:01:56 +03:00
|
|
|
BX_SB16_BUFINL bx_bool puts(const char *data, ...); // write a formatted string to the buffer
|
2002-10-25 15:44:41 +04:00
|
|
|
BX_SB16_BUFINL bx_bool get(Bit8u *data); // read the next available byte
|
|
|
|
BX_SB16_BUFINL bx_bool getw(Bit16u *data); // get word, in order lo/hi
|
|
|
|
BX_SB16_BUFINL bx_bool getw1(Bit16u *data);// get word, in order hi/lo
|
|
|
|
BX_SB16_BUFINL bx_bool full(void); // is the buffer full?
|
|
|
|
BX_SB16_BUFINL bx_bool empty(void); // is it empty?
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
BX_SB16_BUFINL void flush(void); // empty the buffer
|
|
|
|
BX_SB16_BUFINL int bytes(void); // return number of bytes in the buffer
|
|
|
|
BX_SB16_BUFINL Bit8u peek(int ahead); // peek ahead number of bytes
|
|
|
|
|
|
|
|
/* These are for caching the command number */
|
|
|
|
BX_SB16_BUFINL void newcommand(Bit8u newcmd, int bytes); // start a new command with length bytes
|
|
|
|
BX_SB16_BUFINL Bit8u currentcommand(void); // return the current command
|
|
|
|
BX_SB16_BUFINL void clearcommand(void); // clear the command
|
2002-10-25 15:44:41 +04:00
|
|
|
BX_SB16_BUFINL bx_bool commanddone(void); // return if all bytes have arrived
|
|
|
|
BX_SB16_BUFINL bx_bool hascommand(void); // return if there is a pending command
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SB16_BUFINL int commandbytes(void); // return the length of the command
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
Bit8u *buffer;
|
|
|
|
int head,tail,length;
|
|
|
|
Bit8u command;
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool havecommand;
|
2001-04-10 05:04:59 +04:00
|
|
|
int bytesneeded;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
// forward definition
|
2011-03-19 15:57:13 +03:00
|
|
|
class bx_sound_lowlevel_c;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// The actual emulator class, emulating the sound blaster ports
|
2002-11-13 21:39:41 +03:00
|
|
|
class bx_sb16_c : public bx_devmodel_c {
|
2001-04-10 05:04:59 +04:00
|
|
|
public:
|
2006-03-08 00:11:20 +03:00
|
|
|
bx_sb16_c();
|
|
|
|
virtual ~bx_sb16_c();
|
2002-11-13 21:39:41 +03:00
|
|
|
virtual void init(void);
|
|
|
|
virtual void reset(unsigned type);
|
2006-05-27 19:54:49 +04:00
|
|
|
virtual void register_state(void);
|
|
|
|
virtual void after_restore_state(void);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2006-03-03 23:29:50 +03:00
|
|
|
/* Make writelog available to output functions */
|
|
|
|
BX_SB16_SMF void writelog(int loglev, const char *str, ...);
|
2013-11-22 22:28:21 +04:00
|
|
|
// runtime options
|
2006-03-03 23:29:50 +03:00
|
|
|
static Bit64s sb16_param_handler(bx_param_c *param, int set, Bit64s val);
|
2013-11-19 23:04:21 +04:00
|
|
|
static const char* sb16_param_string_handler(bx_param_string_c *param, int set,
|
|
|
|
const char *oldval, const char *val,
|
|
|
|
int maxlen);
|
2013-11-22 22:28:21 +04:00
|
|
|
static void runtime_config_handler(void *);
|
|
|
|
void runtime_config(void);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
2015-01-08 22:12:01 +03:00
|
|
|
BX_SB16_SMF Bit32u fmopl_generator(Bit16u rate, Bit8u *buffer, Bit32u len);
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
private:
|
|
|
|
|
2006-03-03 23:29:50 +03:00
|
|
|
int midimode, wavemode, loglevel;
|
2015-02-19 21:45:43 +03:00
|
|
|
Bit8u midi_changed, wave_changed;
|
2006-03-03 23:29:50 +03:00
|
|
|
Bit32u dmatimer;
|
2015-02-19 21:45:43 +03:00
|
|
|
FILE *logfile;
|
|
|
|
bx_soundlow_waveout_c *waveout[2]; // waveout support
|
2015-02-15 21:32:36 +03:00
|
|
|
bx_soundlow_wavein_c *wavein; // wavein support
|
2015-02-19 21:45:43 +03:00
|
|
|
bx_soundlow_midiout_c *midiout[2]; // midiout support
|
2001-04-10 05:04:59 +04:00
|
|
|
int currentirq;
|
2002-11-10 13:14:55 +03:00
|
|
|
int currentdma8;
|
|
|
|
int currentdma16;
|
2015-01-11 23:13:50 +03:00
|
|
|
int fmopl_callback_id;
|
2015-03-27 18:49:40 +03:00
|
|
|
Bit16u fm_volume;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
// the MPU 401 relevant variables
|
|
|
|
struct bx_sb16_mpu_struct {
|
|
|
|
bx_sb16_buffer datain, dataout, cmd, midicmd;
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool uartmode, irqpending, forceuartmode, singlecommand;
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
int banklsb[BX_SB16_PATCHTABLESIZE];
|
|
|
|
int bankmsb[BX_SB16_PATCHTABLESIZE]; // current patch lists
|
|
|
|
int program[BX_SB16_PATCHTABLESIZE];
|
|
|
|
|
2006-05-14 19:47:37 +04:00
|
|
|
int timer_handle, current_timer; // no. of delta times passed
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit32u last_delta_time; // timer value at last command
|
2015-02-19 21:45:43 +03:00
|
|
|
Bit8u outputinit;
|
2001-04-10 05:04:59 +04:00
|
|
|
} mpu401;
|
|
|
|
|
|
|
|
// the DSP variables
|
|
|
|
struct bx_sb16_dsp_struct {
|
|
|
|
bx_sb16_buffer datain, dataout;
|
|
|
|
Bit8u resetport; // last value written to the reset port
|
|
|
|
Bit8u speaker,prostereo; // properties of the sound input/output
|
2002-10-25 15:44:41 +04:00
|
|
|
bx_bool irqpending; // Is an IRQ pending (not ack'd)
|
|
|
|
bx_bool midiuartmode; // Is the DSP in MIDI UART mode
|
2003-11-15 17:56:30 +03:00
|
|
|
Bit8u testreg;
|
2001-04-10 05:04:59 +04:00
|
|
|
struct bx_sb16_dsp_dma_struct {
|
|
|
|
// Properties of the current DMA transfer:
|
|
|
|
// mode= 0: no transfer, 1: single-cycle transfer, 2: auto-init DMA
|
|
|
|
// bits= 8 or 16
|
|
|
|
// fifo= ?? Bit used in DMA command, no idea what it means...
|
|
|
|
// output= 0: input, 1: output
|
|
|
|
// bps= bytes per sample; =(dmabits/8)*(dmastereo+1)
|
|
|
|
// stereo= 0: mono, 1: stereo
|
|
|
|
// issigned= 0: unsigned data, 1: signed data
|
|
|
|
// highspeed= 0: normal mode, 1: highspeed mode (only SBPro)
|
|
|
|
// timer= so many us between data bytes
|
2015-01-11 23:13:50 +03:00
|
|
|
int mode, bps, timer;
|
|
|
|
bx_bool fifo, output, highspeed;
|
|
|
|
bx_pcm_param_t param;
|
2001-04-10 05:04:59 +04:00
|
|
|
Bit16u count; // bytes remaining in this transfer
|
2011-03-20 21:02:12 +03:00
|
|
|
Bit8u *chunk; // buffers up to BX_SOUNDLOW_WAVEPACKETSIZE bytes
|
|
|
|
int chunkindex; // index into the buffer
|
2001-04-10 05:04:59 +04:00
|
|
|
int chunkcount; // for input: size of the recorded input
|
|
|
|
Bit16u timeconstant;
|
2015-01-11 23:13:50 +03:00
|
|
|
Bit16u blocklength;
|
2001-04-10 05:04:59 +04:00
|
|
|
} dma;
|
|
|
|
int timer_handle; // handle for the DMA timer
|
2015-02-19 21:45:43 +03:00
|
|
|
Bit8u outputinit; // have the lowlevel output been initialized
|
2011-04-11 01:12:30 +04:00
|
|
|
bx_bool inputinit; // have the lowlevel input been initialized
|
2001-04-10 05:04:59 +04:00
|
|
|
} dsp;
|
|
|
|
|
2005-02-04 22:50:50 +03:00
|
|
|
// the ASP/CSP registers
|
|
|
|
Bit8u csp_reg[256];
|
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
// the variables common to all FM emulations
|
2004-08-11 15:09:01 +04:00
|
|
|
struct bx_sb16_opl_struct;
|
|
|
|
friend struct bx_sb16_opl_struct;
|
2001-04-10 05:04:59 +04:00
|
|
|
struct bx_sb16_opl_struct {
|
|
|
|
int timer_handle;
|
|
|
|
int timer_running;
|
|
|
|
int index[2]; // index register for the two chips
|
2008-07-27 19:41:43 +04:00
|
|
|
Bit16u timer[4]; // two timers on each chip
|
|
|
|
Bit16u timerinit[4]; // initial timer counts
|
2001-04-10 05:04:59 +04:00
|
|
|
int tmask[2]; // the timer masking byte for both chips
|
|
|
|
int tflag[2]; // shows if the timer overflow has occured
|
|
|
|
} opl;
|
|
|
|
|
|
|
|
struct bx_sb16_mixer_struct {
|
|
|
|
Bit8u regindex;
|
|
|
|
Bit8u reg[BX_SB16_MIX_REG];
|
|
|
|
} mixer;
|
|
|
|
|
|
|
|
struct bx_sb16_emul_struct {
|
|
|
|
bx_sb16_buffer datain, dataout;
|
|
|
|
bx_sb16_ins_map remaplist[256];
|
2006-05-14 19:47:37 +04:00
|
|
|
Bit16u remaps;
|
2001-04-10 05:04:59 +04:00
|
|
|
} emuldata;
|
|
|
|
|
2002-11-10 13:14:55 +03:00
|
|
|
/* DMA input and output, 8 and 16 bit */
|
2012-07-14 18:20:36 +04:00
|
|
|
BX_SB16_SMF Bit16u dma_write8(Bit8u *buffer, Bit16u maxlen);
|
|
|
|
BX_SB16_SMF Bit16u dma_read8(Bit8u *buffer, Bit16u maxlen);
|
|
|
|
BX_SB16_SMF Bit16u dma_write16(Bit16u *buffer, Bit16u maxlen);
|
|
|
|
BX_SB16_SMF Bit16u dma_read16(Bit16u *buffer, Bit16u maxlen);
|
2002-11-10 13:14:55 +03:00
|
|
|
|
2001-04-10 05:04:59 +04:00
|
|
|
/* the MPU 401 part of the emulator */
|
|
|
|
BX_SB16_SMF Bit32u mpu_status(); // read status port 3x1
|
|
|
|
BX_SB16_SMF void mpu_command(Bit32u value); // write command port 3x1
|
|
|
|
BX_SB16_SMF Bit32u mpu_dataread(); // read data port 3x0
|
|
|
|
BX_SB16_SMF void mpu_datawrite(Bit32u value); // write data port 3x0
|
|
|
|
BX_SB16_SMF void mpu_mididata(Bit32u value); // get a midi byte
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
static void mpu_timer (void *);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* The DSP part */
|
|
|
|
BX_SB16_SMF void dsp_reset(Bit32u value); // write to reset port 2x6
|
|
|
|
BX_SB16_SMF Bit32u dsp_dataread(); // read from data port 2xa
|
|
|
|
BX_SB16_SMF void dsp_datawrite(Bit32u value); // write to data port 2xa
|
|
|
|
BX_SB16_SMF Bit32u dsp_bufferstatus(); // read buffer status 2xc
|
|
|
|
BX_SB16_SMF Bit32u dsp_status(); // read dsp status 2xe
|
|
|
|
BX_SB16_SMF void dsp_getsamplebyte(Bit8u value);
|
|
|
|
BX_SB16_SMF Bit8u dsp_putsamplebyte();
|
|
|
|
BX_SB16_SMF void dsp_sendwavepacket();
|
|
|
|
BX_SB16_SMF Bit32u dsp_irq16ack(); // ack 16 bit IRQ 2xf
|
|
|
|
BX_SB16_SMF void dsp_dma(Bit8u command, Bit8u mode, Bit16u length, Bit8u comp);
|
|
|
|
// initiate a DMA transfer
|
|
|
|
BX_SB16_SMF void dsp_dmadone(); // stop a DMA transfer
|
|
|
|
BX_SB16_SMF void dsp_enabledma(); // enable the transfer
|
|
|
|
BX_SB16_SMF void dsp_disabledma(); // temporarily disable DMA
|
2011-04-11 01:12:30 +04:00
|
|
|
static void dsp_dmatimer(void *);
|
|
|
|
static Bit32u sb16_adc_handler(void *, Bit32u len);
|
|
|
|
Bit32u dsp_adc_handler(Bit32u len);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* The mixer part */
|
|
|
|
BX_SB16_SMF Bit32u mixer_readdata(void);
|
|
|
|
BX_SB16_SMF void mixer_writedata(Bit32u value);
|
|
|
|
BX_SB16_SMF void mixer_writeregister(Bit32u value);
|
2015-03-27 18:49:40 +03:00
|
|
|
BX_SB16_SMF Bit16u calc_output_volume(Bit8u reg1, Bit8u reg2, bx_bool shift);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SB16_SMF void set_irq_dma();
|
|
|
|
|
|
|
|
/* The emulator ports to change emulator properties */
|
|
|
|
BX_SB16_SMF Bit32u emul_read (void); // read emulator port
|
|
|
|
BX_SB16_SMF void emul_write(Bit32u value); // write emulator port
|
|
|
|
|
|
|
|
/* The FM emulation part */
|
|
|
|
BX_SB16_SMF Bit32u opl_status(int chipid);
|
|
|
|
BX_SB16_SMF void opl_data(Bit32u value, int chipid);
|
2015-01-15 23:25:27 +03:00
|
|
|
BX_SB16_SMF void opl_settimermask(int value, int chipid);
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
static void opl_timer(void *);
|
2002-11-10 13:14:55 +03:00
|
|
|
BX_SB16_SMF void opl_timerevent(void);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* several high level sound handlers */
|
|
|
|
BX_SB16_SMF int currentdeltatime();
|
2002-10-25 15:44:41 +04:00
|
|
|
BX_SB16_SMF void processmidicommand(bx_bool force);
|
2001-04-10 05:04:59 +04:00
|
|
|
BX_SB16_SMF void midiremapprogram(int channel); // remap program change
|
|
|
|
BX_SB16_SMF void writemidicommand(int command, int length, Bit8u data[]);
|
|
|
|
|
2013-11-24 18:04:34 +04:00
|
|
|
BX_SB16_SMF void closemidioutput(); // close midi file / device
|
|
|
|
BX_SB16_SMF void closewaveoutput(); // close wave file
|
2013-11-29 00:47:34 +04:00
|
|
|
BX_SB16_SMF void create_logfile();
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
/* The port IO multiplexer functions */
|
|
|
|
|
merge in BRANCH-io-cleanup.
To see the commit logs for this use either cvsweb or
cvs update -r BRANCH-io-cleanup and then 'cvs log' the various files.
In general this provides a generic interface for logging.
logfunctions:: is a class that is inherited by some classes, and also
. allocated as a standalone global called 'genlog'. All logging uses
. one of the ::info(), ::error(), ::ldebug(), ::panic() methods of this
. class through 'BX_INFO(), BX_ERROR(), BX_DEBUG(), BX_PANIC()' macros
. respectively.
.
. An example usage:
. BX_INFO(("Hello, World!\n"));
iofunctions:: is a class that is allocated once by default, and assigned
as the iofunction of each logfunctions instance. It is this class that
maintains the file descriptor and other output related code, at this
point using vfprintf(). At some future point, someone may choose to
write a gui 'console' for bochs to which messages would be redirected
simply by assigning a different iofunction class to the various logfunctions
objects.
More cleanup is coming, but this works for now. If you want to see alot
of debugging output, in main.cc, change onoff[LOGLEV_DEBUG]=0 to =1.
Comments, bugs, flames, to me: todd@fries.net
2001-05-15 18:49:57 +04:00
|
|
|
static Bit32u read_handler(void *this_ptr, Bit32u address, unsigned io_len);
|
|
|
|
static void write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len);
|
2001-04-10 05:04:59 +04:00
|
|
|
|
|
|
|
#if !BX_USE_SB16_SMF
|
|
|
|
Bit32u read(Bit32u address, unsigned io_len);
|
|
|
|
void write(Bit32u address, Bit32u value, unsigned io_len);
|
|
|
|
#endif
|
|
|
|
};
|
|
|
|
|
2001-06-21 22:34:50 +04:00
|
|
|
#define BOTHLOG(x) (x)
|
2011-01-26 02:29:08 +03:00
|
|
|
#define WRITELOG (BX_SB16_THIS writelog)
|
2006-03-03 23:29:50 +03:00
|
|
|
#define MIDILOG(x) ((BX_SB16_THIS midimode>0?x:0x7f))
|
|
|
|
#define WAVELOG(x) ((BX_SB16_THIS wavemode>0?x:0x7f))
|
2006-03-07 21:16:41 +03:00
|
|
|
|
|
|
|
#endif
|