This commit is contained in:
Werner
2021-11-19 17:55:40 -03:00
parent 8b7501fb91
commit ae70b9db3d
11 changed files with 409 additions and 324 deletions

5
Source/Limits.rs Normal file
View File

@ -0,0 +1,5 @@
pub const REGISTER_COUNT: usize = 16;
pub const STACK_SIZE: usize = 64;
pub const HEAP_LIMIT: usize = 256;