From db30172979436c082fc22b775cbe25673c5b1bc0 Mon Sep 17 00:00:00 2001 From: Ashelyn Rose Date: Tue, 24 Dec 2024 17:43:22 -0700 Subject: Add Glk stub --- src/glk.rs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src') diff --git a/src/glk.rs b/src/glk.rs index ed308f9..4d67760 100644 --- a/src/glk.rs +++ b/src/glk.rs @@ -1,2 +1,11 @@ +use crate::interpreter::{self, Interpreter}; + pub struct Glk { } + +impl Glk { + pub fn call_func(interpreter: &mut Interpreter, func_id: u32, arg_count: u32) { + println!("Calling GLK function with ID {func_id}"); + } +} + -- cgit 1.4.1