debuging mem_checker::from

This commit is contained in:
Baptiste 2023-02-15 15:45:37 +01:00
parent b5690a7f57
commit 4425ac747e
3 changed files with 22 additions and 13 deletions

View File

@ -94,7 +94,10 @@ impl Mem_Checker{
fn from(path: &String) -> Mem_Checker {
let file = fs::File::open("test_file_section.txt").expect("Wrong filename");
let reader = io::BufReader::new(file);
let reader = io::BufReader::new(&file);
let reader2 = io::BufReader::new(&file);
let lines = reader.lines();
let length = reader2.lines().count();
let mut pc: usize = 0;
let mut sp: usize = 0;
@ -103,15 +106,15 @@ impl Mem_Checker{
let mut tmp_addr_str: String = String::new();
let mut tmp_len_str: String = String::new();
for (i,line) in reader.lines().enumerate() {
for (i,line) in lines.enumerate() {
let current_line = line.unwrap();
if i == current_line.len()-2 {
if i == length-2 {
//Lecture de PC
pc = string_hex_to_usize(&current_line);
}
else if i == current_line.len()-1 {
else if i == length-1 {
//Lecture SP
sp = string_hex_to_usize(&current_line);
}
@ -277,7 +280,6 @@ mod tests {
}
#[test]
fn test_enum_start_at_zero(){
let v = vec![1,2,3];

View File

@ -1,8 +1,15 @@
0
0
FF FF
F4A12200
A0 0A
01022B
0B 0F
FFACBC5CEF
addi sp,sp,-32
sd s0,24(sp)
addi s0,sp,32
sw zero,-20(s0)
li a5,1
sw a5,-24(s0)
lw a5,-20(s0)
mv a4,a5
lw a5,-24(s0)
addw a5,a4,a5
sw a5,-20(s0)
nop
ld s0,24(sp)
addi sp,sp,32
ret