spectrusty_peripherals/
bus.rs

1/*
2    Copyright (C) 2020-2022  Rafal Michalski
3
4    This file is part of SPECTRUSTY, a Rust library for building emulators.
5
6    For the full copyright notice, see the lib.rs file.
7*/
8//! System bus device emulators to be used with [ControlUnit][spectrusty_core::chip::ControlUnit]s.
9pub mod ay;
10pub mod debug;
11pub mod joystick;
12pub mod mouse;
13pub mod parallel;
14pub mod zxinterface1;
15pub mod zxprinter;