From 8137ccd6021caef5e509e43a9b32f604ff8aeef2 Mon Sep 17 00:00:00 2001 From: psf Date: Wed, 18 May 2022 20:20:08 -0700 Subject: [PATCH] Strip comments in preparation for making a REAL writeup --- frustration.rs | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/frustration.rs b/frustration.rs index e5d32ea..aae61a9 100644 --- a/frustration.rs +++ b/frustration.rs @@ -1,6 +1,3 @@ -/* --- The virtual CPU --- -*/ - use std::io; use std::io::Read; use std::io::Write; @@ -171,18 +168,6 @@ const PRIMITIVES: [Primitive; 16] = [ } ]; -/* --- The memory map --- -*/ - -/* --- The dictionary format --- -*/ - -/* --- The threading kind --- -*/ - -/* --- Create the dictionary --- -*/ - struct Dict<'a> { dp: u16, here: u16, @@ -344,8 +329,7 @@ fn build_dictionary(c: &mut Core) { d.entry(); d.name(1, *b"' "); forth!(word, find, RET); - /* --- The outer interpreter --- - */ + /* --- The outer interpreter --- */ // x10 ( n -- n*10 ) d.entry(); d.name(3, *b"x10"); let x10 = d.here;