1
0
mirror of https://github.com/jscrane/r65emu.git synced 2024-06-01 22:41:30 +00:00
r65emu/r65emu.h
Stephen Crane 628a507fe8
Pwm sound (#18)
* just use tone()/noTone() to support PWM sound now

* remove sound_pwm now

* remove sound_pwm
2023-07-27 10:50:25 +01:00

22 lines
388 B
C

#ifndef __R65EMU_H__
#define __R65EMU_H__
#include "memory.h"
#include "CPU.h"
#include "ram.h"
#include "spiram.h"
#include "prom.h"
#include "ps2drv.h"
#include "display.h"
#include "keyboard.h"
#include "serialio.h"
#include "filer.h"
#include "flash_filer.h"
#include "serial_filer.h"
#include "socket_filer.h"
#include "timed.h"
#include "hardware.h"
#include "sound_dac.h"
#endif