Move 'mod' to more appropriate place

This commit is contained in:
Dylan McKay 2017-12-14 02:57:45 +13:00
parent e1a05bbf96
commit 3f3c8e2559
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,7 @@
extern crate avr_mcu;
mod gen;
use avr_mcu::*;
use std::fs::{self, File};
use std::io;
@ -84,5 +86,3 @@ fn write_core_module(mcu: &Mcu, w: &mut Write) -> Result<(), io::Error> {
writeln!(w)
}
mod gen;