diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Noddybox.Emulation.EightBit/Register16.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Noddybox.Emulation.EightBit/Register16.cs b/src/Noddybox.Emulation.EightBit/Register16.cs index 10367cc..1aebd27 100644 --- a/src/Noddybox.Emulation.EightBit/Register16.cs +++ b/src/Noddybox.Emulation.EightBit/Register16.cs @@ -93,7 +93,7 @@ namespace Noddybox.Emulation.EightBit r.reg = 0x1234;
- if (r.low != 0x24 || r.high != 0x12)
+ if (r.low != 0x34 || r.high != 0x12)
{
throw new Exception("Compile time endian setting incorrect");
}
|