Skip to content

Commit

Permalink
test small stack
Browse files Browse the repository at this point in the history
  • Loading branch information
Gioh Kim committed Nov 18, 2024
1 parent 3896060 commit a0583c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/memory.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ use std::cell::RefCell;
use std::fmt;

pub struct Memory {
data: [u8; 1024 * 1024], // 1MB 크기의 배열
//data: [u8; 1024 * 1024], // 1MB 크기의 배열
data: [u8; 512],
last_address: RefCell<usize>,
}

Expand Down

0 comments on commit a0583c5

Please sign in to comment.