Move 'mod' to more appropriate place
This commit is contained in:
parent
e1a05bbf96
commit
3f3c8e2559
|
@ -1,5 +1,7 @@
|
||||||
extern crate avr_mcu;
|
extern crate avr_mcu;
|
||||||
|
|
||||||
|
mod gen;
|
||||||
|
|
||||||
use avr_mcu::*;
|
use avr_mcu::*;
|
||||||
use std::fs::{self, File};
|
use std::fs::{self, File};
|
||||||
use std::io;
|
use std::io;
|
||||||
|
@ -84,5 +86,3 @@ fn write_core_module(mcu: &Mcu, w: &mut Write) -> Result<(), io::Error> {
|
||||||
writeln!(w)
|
writeln!(w)
|
||||||
}
|
}
|
||||||
|
|
||||||
mod gen;
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue