mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-15 06:35:45 -04:00
Add interrupt controller emulation
This commit is contained in:
@ -80,6 +80,18 @@ struct BitField
|
||||
return *this;
|
||||
}
|
||||
|
||||
BitField& operator&=(DataType rhs)
|
||||
{
|
||||
SetValue(GetValue() & rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BitField& operator|=(DataType rhs)
|
||||
{
|
||||
SetValue(GetValue() & rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BitField& operator^=(DataType rhs)
|
||||
{
|
||||
SetValue(GetValue() ^ rhs);
|
||||
|
Reference in New Issue
Block a user