1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-09-25 08:25:09 +00:00

Shuffle declare order.

This commit is contained in:
Thomas Harte
2025-09-22 13:21:48 -04:00
parent d612a385d2
commit 0349931953

View File

@@ -24,11 +24,11 @@
namespace Motorola::CRTC {
using RefreshAddress = Numeric::SizedCounter<14>;
using RowAddress = Numeric::SizedCounter<7>;
using LineAddress = Numeric::SizedCounter<5>;
using SyncCounter = Numeric::SizedCounter<4>;
using CharacterAddress = Numeric::SizedCounter<8>;
using LineAddress = Numeric::SizedCounter<5>;
using RowAddress = Numeric::SizedCounter<7>;
struct BusState {
bool display_enable = false;