aboutsummaryrefslogtreecommitdiff
path: root/src/binary.rs
blob: 2564637f82d831b9493096c177c798ac2e498937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub struct Binary<'a> {
    words: &'a [u32],
}

impl<'a> Binary<'a> {
    pub fn new(words: &'a [u32]) -> Binary<'a> {
        Binary {
            words: words,
        }
    }

    // pub fn new_from_hex_file() -> Binary<'a> {
        
    // }
}