aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-11-30 13:03:08 -0500
committerClyne Sullivan <clyne@bitgloo.com>2024-11-30 13:03:08 -0500
commitd8b279b7709410112002828199b0261508a9dda4 (patch)
treeeac3982365a633c6650e840335dea6282db00fa1 /main.cpp
parent5b81d9c76dd115375efdd73ef15da9c37ce0c6fc (diff)
roll our own from_chars
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/main.cpp b/main.cpp
index 0cc5640..9453531 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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) {