diff options
author | 2022-06-16 12:47:52 +0200 | |
---|---|---|
committer | 2025-04-29 23:06:41 +0200 | |
commit | 45d4cd52a8194f2ef9e0383cfb2e2a35634af6ff (patch) | |
tree | 4e8d8fcb7382a5e9e0bce5ec59939bcfbe67155a /src/mame/skeleton/alphasma3k.cpp | |
parent | 5c14bcdfcb4aefb71b5b62387c4ad05dbeb3814e (diff) |
full xtal conversionxtal
Diffstat (limited to 'src/mame/skeleton/alphasma3k.cpp')
-rw-r--r-- | src/mame/skeleton/alphasma3k.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/skeleton/alphasma3k.cpp b/src/mame/skeleton/alphasma3k.cpp index f0ecc6ba050..21a64fb2ecd 100644 --- a/src/mame/skeleton/alphasma3k.cpp +++ b/src/mame/skeleton/alphasma3k.cpp @@ -72,13 +72,13 @@ INPUT_PORTS_END void alphasmart3k_state::alphasmart3k(machine_config &config) { // Basic machine hardware - MC68328(config, m_maincpu, 16'000'000); // MC68EZ328PU16V, clock unverified + MC68328(config, m_maincpu, XTAL::u(16'000'000)); // MC68EZ328PU16V, clock unverified // Values from AlphaSmart 2000, not confirmed for AlphaSmart 3000 // AlphaSmart 3000 uses a Data Image CM4040 LCD display - KS0066_F05(config, m_lcdc0, 0); + KS0066_F05(config, m_lcdc0); m_lcdc0->set_lcd_size(2, 40); - KS0066_F05(config, m_lcdc1, 0); + KS0066_F05(config, m_lcdc1); m_lcdc1->set_lcd_size(2, 40); RAM(config, RAM_TAG).set_default_size("256K"); |