diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-30 13:03:08 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-30 13:03:08 -0500 |
commit | d8b279b7709410112002828199b0261508a9dda4 (patch) | |
tree | eac3982365a633c6650e840335dea6282db00fa1 /main.cpp | |
parent | 5b81d9c76dd115375efdd73ef15da9c37ce0c6fc (diff) |
roll our own from_chars
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -26,8 +26,13 @@ constinit static sforth::forth<1024> forth {sforth::initialize<&forth>()}; constinit static sforth::native_word<".", [](auto) { char buf[32] = {}; - std::to_chars(buf, buf + sizeof(buf), forth.pop(), forth.base); - std::cout << buf << ' '; + auto ptr = buf + sizeof(buf); + auto v = forth.pop(); + *--ptr = '\0'; + do { + *--ptr = "0123456789abcdefghijklmnopqrstuvwxyz"[v % forth.base]; + } while (v /= forth.base); + std::cout << ptr << ' '; }> dot; constinit static sforth::native_word<"emit", [](auto) { std::cout << static_cast<char>(forth.pop()); @@ -39,7 +44,6 @@ int main(int argc, const char *argv[]) { std::span args (argv + 1, argc - 1); - dot.next = std::exchange(forth.next, &emit); for (auto arg : args) { |