Files
LithosAnanake/src/word_source/include/q48_words.h
T

26 lines
466 B
C
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
StarForth — Steady-State Virtual Machine Runtime
Copyright (c) 20232025 Robert A. James
All rights reserved.
Licensed under the StarForth License, Version 1.0
*/
/**
* q48_words.h — Module 25: Q48.16 fixed-point FORTH words
*/
#ifndef Q48_WORDS_H
#define Q48_WORDS_H
#include "vm.h"
/**
* Register all Q48.16 FORTH words with the VM.
* Module 25 in register_forth79_words().
*/
void register_q48_words(VM *vm);
#endif /* Q48_WORDS_H */