From ed6e3b67c2de520e159819f4ad0ba64650bd1470 Mon Sep 17 00:00:00 2001 From: "B. Watson" Date: Tue, 31 Mar 2026 07:56:00 -0400 Subject: Started rewriting bits of edbox.c in asm. Now 5219 bytes free. --- src/edbox.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/edbox.h') diff --git a/src/edbox.h b/src/edbox.h index ae0acfd..67fd3fa 100644 --- a/src/edbox.h +++ b/src/edbox.h @@ -11,7 +11,7 @@ extern char edbox_visible; extern char edbox_len; /* clear the contents of the edit box (whether it's visible or not) */ -void edbox_clear(void); +void __fastcall__ edbox_clear(void); /* make the edit box visible */ void edbox_show(void); @@ -30,10 +30,10 @@ void edbox_keystroke(char c); extern void (*edbox_callback)(void); /* set edit box contents (clears out whatever was there) */ -void edbox_set(char *contents); +void __fastcall__ edbox_set(char *contents); /* append a space to the edit box */ -void edbox_addchr(char c); +void __fastcall__ edbox_addchr(char c); /* append a space to the edit box */ -void edbox_space(void); +void __fastcall__ edbox_space(void); -- cgit v1.2.3