diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-30 10:02:26 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-30 10:02:26 -0500 |
commit | cb04555442286affb56a95a54c428f8f643b3503 (patch) | |
tree | 7e3a2347745bdb052deaff2d136f7b2a14ea1321 /main.cpp | |
parent | d2cff5f967bb1e625ad54d400059965a04618c4a (diff) |
create namespace; refactor header
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -14,7 +14,7 @@ /// You should have received a copy of the GNU General Public License along /// with this program. If not, see <http://www.gnu.org/licenses/>. -#include "forth.hpp" +#include "sforth/forth.hpp" #include <array> #include <fstream> @@ -22,23 +22,23 @@ #include <span> #include <string> -static std::array<cell, 1024> dict; -static auto fth = new (dict.data()) forth; +static std::array<sforth::cell, 1024> dict; +static auto fth = new (dict.data()) sforth::forth; -static bool parse_stream(forth *, std::istream&, bool say_okay = false); +static bool parse_stream(sforth::forth *, std::istream&, bool say_okay = false); int main(int argc, const char *argv[]) { std::span args (argv + 1, argc - 1); - forth::initialize<&fth>(dict.end()); + sforth::initialize<&fth>(dict.end()); fth->add(".", [](auto) { char buf[32] = {}; std::to_chars(buf, buf + sizeof(buf), fth->pop(), fth->base); std::cout << buf << ' '; }); fth->add("emit", [](auto) { std::cout << static_cast<char>(fth->pop()); }); - fth->add("dictsize", [](auto) { fth->push(dict.size() * sizeof(cell)); }); + fth->add("dictsize", [](auto) { fth->push(dict.size() * sizeof(sforth::cell)); }); for (auto arg : args) { if (std::ifstream file {arg}; parse_stream(fth, file)) @@ -48,7 +48,7 @@ int main(int argc, const char *argv[]) parse_stream(fth, std::cin, true); } -bool parse_stream(forth *fth, std::istream& str, bool say_okay) +bool parse_stream(sforth::forth *fth, std::istream& str, bool say_okay) { std::string line; @@ -60,8 +60,8 @@ bool parse_stream(forth *fth, std::istream& str, bool say_okay) try { fth->parse_line(line); - } catch (forth::error e) { - std::cerr << fth->error_string(e) << " in " << line << std::endl; + } catch (sforth::error e) { + std::cerr << sforth::error_string(e) << " in " << line << std::endl; continue; } } |