diff options
author | David Li <li.davidm96@gmail.com> | 2016-01-14 10:35:40 -0700 |
---|---|---|
committer | David Li <li.davidm96@gmail.com> | 2016-01-14 10:35:40 -0700 |
commit | 59ae270a4fa286e72f7deef08dcd044828eefe63 (patch) | |
tree | 91b6fabdf4e477a5437cf32e5f2d6d1114007ad2 /src/lib.rs | |
parent | 36b21d7691bb452a68d857a71c16b9f922b047a2 (diff) |
Convert ISA types to newtype structs
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,11 +14,11 @@ // You should have received a copy of the GNU General Public License // along with rustv. If not, see <http://www.gnu.org/licenses/>. -#![feature(braced_empty_structs, step_by)] +#![feature(augmented_assignments, braced_empty_structs, + op_assign_traits, step_by)] extern crate elfloader32 as elfloader_lib; pub mod isa; -pub mod binary; pub mod memory; pub mod register_file; pub mod simulator; |