Break entity references and instruction info out into new modules.

Avoid gathering too much code in repr.rs.

The `entities` module contains entity reference types, and the `instructions`
module contains instruction opcodes and formats.
This commit is contained in:
Jakob Stoklund Olesen
2016-05-13 13:32:20 -07:00
parent e3927e205e
commit 9c9be1cb58
6 changed files with 424 additions and 353 deletions

View File

@@ -7,5 +7,7 @@
pub mod types;
pub mod immediates;
pub mod entities;
pub mod instructions;
pub mod repr;
pub mod write;