diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-01-01 11:45:50 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-01-01 11:45:50 -0500 |
commit | ec3b03c4fd2fc9ecad4dd810ba7b6e4766ff286b (patch) | |
tree | a5789c680cd1a4f4a6bd4e462dd21331dc6be553 /libalee/dictionary.cpp | |
parent | e8c9f97f4fa9502b88c8c3a44c5d5f5f1c98d506 (diff) |
remove addNativeWordnative
Diffstat (limited to 'libalee/dictionary.cpp')
-rw-r--r-- | libalee/dictionary.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libalee/dictionary.cpp b/libalee/dictionary.cpp index e946c59..e4f6761 100644 --- a/libalee/dictionary.cpp +++ b/libalee/dictionary.cpp @@ -29,22 +29,6 @@ void Dictionary::initialize() } LIBALEE_SECTION -void Dictionary::addNativeWord(const char *s, void (*func)(State&)) -{ - const Addr h = read(Here); - Addr n = h + sizeof(Cell); - for (; *s; ++s, ++n) - writebyte(n, *s); - addDefinition(Word(h + sizeof(Cell), n)); - add(CoreWords::token("_nx")); - add((Cell)func); - - const auto dcell = h - latest(); - write(h, (read(h) & 0x1F) | Native | static_cast<Cell>(dcell << DistancePos)); - latest(h); -} - -LIBALEE_SECTION Addr Dictionary::allot(Cell amount) noexcept { Addr old = here(); |