mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-25 21:12:04 +00:00
34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.Hardware2.Audio.Devices.ES1370.Components
|
|
{
|
|
class DACak4531 : Cosmos.Hardware2.Audio.Devices.Generic.Components.DACEntity
|
|
{
|
|
public DACak4531() : base() { }
|
|
|
|
public enum Bit : byte
|
|
{
|
|
LeftMasterVol = 0x00, //master volume left
|
|
RightMasterVol = 0x01, //master volume right
|
|
LeftVoiceVol= 0x02, // channel volume left
|
|
RightVoiceVol = 0x03, //channel volume right
|
|
LeftFMVol = 0x04, //FM volume left
|
|
RightFMVol = 0x05,//FM volume right
|
|
LeftCDVol = 0x06, //CD Volume left
|
|
RightCDVol = 0x07,
|
|
MonoLeft = 0x0c, //Mono volume left
|
|
MonoRight= 0x0d, //Mono volume right
|
|
MonoOutVol= 0x0f, //Mono out volume
|
|
Sw1Out=0x10, //Mixer output chooser 1
|
|
Sw2Out = 0x11, //Mixer output chooser 2
|
|
Sw1In = 0x12,
|
|
Sw2In = 0x13,
|
|
Reset=0x16,
|
|
Clock=0x17,
|
|
Ad=0x18
|
|
}
|
|
}
|
|
}
|