// types.rs — Shared types used across all unit modules
//
// These are the fundamental building blocks of the Forth VM.
// Every module imports from here rather than from main.rs.
/// The fundamental data type — a signed 64-bit integer.
pub type Cell = i64;
/// PAD buffer address in memory (used for string operations).
pub const PAD: usize = 60000;
/// A single Forth instruction in a compiled word body.
/// A dictionary entry — a named, compiled Forth word.