m68000 0.2.3

A Motorola 68000 interpreter, disassembler and assembler (code emitter)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "m68000"
version = "0.2.3"
authors = ["Stovent <23307724+Stovent@users.noreply.github.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Motorola 68000 interpreter, disassembler and assembler (code emitter)"
readme = "README.md"
keywords = [
    "motorola",
    "68000",
    "m68k",
    "interpreter",
    "emulator",
]
categories = [
    "compilers",
    "emulators",
]
license = "MPL-2.0"
repository = "https://github.com/Stovent/m68000"

[features]
default = []
ffi = []

[lib]
name = "m68000"
crate-type = [
    "lib",
    "staticlib",
]
path = "src/lib.rs"

[[bin]]
name = "decoder"
path = "src/bin/decoder.rs"

[[bin]]
name = "disassemble"
path = "src/bin/disassemble.rs"

[[bin]]
name = "scc68070"
path = "src/bin/scc68070.rs"

[[test]]
name = "assembler"
path = "tests/assembler.rs"

[[test]]
name = "memory_access"
path = "tests/memory_access.rs"

[[test]]
name = "operators"
path = "tests/operators.rs"

[[test]]
name = "status_register"
path = "tests/status_register.rs"