diff options
| author | Brian Cully <bjc@spork.org> | 2025-08-25 08:30:43 -0400 |
|---|---|---|
| committer | Brian Cully <bjc@spork.org> | 2025-08-25 08:30:43 -0400 |
| commit | 74e271359b9df0fa74f98752eb22252b8dcc9ed8 (patch) | |
| tree | 4d259da9f0edbceba44ac24bf7d8794ce0324ed0 /src/forth | |
| parent | ee78cb6f7f8243217098bd420ea1482d5db254f2 (diff) | |
| download | automathon-74e271359b9df0fa74f98752eb22252b8dcc9ed8.tar.gz automathon-74e271359b9df0fa74f98752eb22252b8dcc9ed8.zip | |
use isize
Diffstat (limited to 'src/forth')
| -rw-r--r-- | src/forth/vm.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/forth/vm.rs b/src/forth/vm.rs index 8cec0d2..a4f57c7 100644 --- a/src/forth/vm.rs +++ b/src/forth/vm.rs @@ -2,7 +2,7 @@ use log::debug; use std::ops::Index; -pub type DataStackType = i32; +pub type DataStackType = isize; #[derive(Clone, Debug, Eq, PartialEq)] pub enum OpCode { |
