File 36ca46cc4d5e5132f2252f80682659341006b736.patch of Package nonpareil
From 36ca46cc4d5e5132f2252f80682659341006b736 Mon Sep 17 00:00:00 2001 From: Tim Allen <thristian@gmail.com> Date: Mon, 3 Mar 2025 22:14:27 +1100 Subject: [PATCH] Add missing src/wasm.h --- src/wasm.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/wasm.h diff --git a/src/wasm.h b/src/wasm.h new file mode 100644 index 0000000..a3aa83b --- /dev/null +++ b/src/wasm.h @@ -0,0 +1,28 @@ +/* +Copyright 2023 Eric Smith <spacewar@gmail.com> +SPDX-License-Identifier: GPL-3.0-only + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License version 3 as +published by the Free Software Foundation. + +Note that permission is NOT granted to redistribute and/or modify +this porogram under the terms of any other version, earlier or +later, of the GNU General Public License. + +This program is distributed in the hope that it will be useful, but +WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +General Public License version 3 for more details. + +You should have received a copy of the GNU General Public License +version 3 along with this program (in the file "gpl-3.0.txt"); if not, +see <https://www.gnu.org/licenses/>. +*/ + +#include <stdbool.h> +#include <stdint.h> +#include "symtab.h" +#include "asm.h" + +void pseudo_check(addr_t addr);