zinc64_emu/
lib.rs

1// This file is part of zinc64.
2// Copyright (c) 2016-2019 Sebastian Jastrzebski. All rights reserved.
3// Licensed under the GPLv3. See LICENSE file in the project root for full license text.
4
5#![cfg_attr(not(feature = "std"), no_std)]
6#![cfg_attr(not(feature = "std"), feature(alloc))]
7
8#[cfg(feature = "std")]
9extern crate core;
10#[cfg(not(feature = "std"))]
11#[macro_use]
12extern crate alloc;
13#[macro_use]
14extern crate log;
15
16pub mod cpu;
17pub mod device;
18pub mod io;
19pub mod mem;
20pub mod sound;
21pub mod system;
22pub mod video;