From 451274bc804a60ee585651d9a09f846348f19267 Mon Sep 17 00:00:00 2001 From: Danny Milosavljevic Date: Sat, 13 Jun 2020 19:07:32 +0200 Subject: [PATCH] mescc: Add modules for armv4. * mes/module/mescc/armv4/as.mes: New file. * mes/module/mescc/armv4/info.mes: New file. * mes/module/mescc/mescc.mes: Use them. --- mes/module/mescc/armv4/as.mes | 23 +++++++++++++++++++++++ mes/module/mescc/armv4/info.mes | 23 +++++++++++++++++++++++ mes/module/mescc/mescc.mes | 1 + 3 files changed, 47 insertions(+) create mode 100644 mes/module/mescc/armv4/as.mes create mode 100644 mes/module/mescc/armv4/info.mes diff --git a/mes/module/mescc/armv4/as.mes b/mes/module/mescc/armv4/as.mes new file mode 100644 index 00000000..8e68de53 --- /dev/null +++ b/mes/module/mescc/armv4/as.mes @@ -0,0 +1,23 @@ +;;; -*-scheme-*- + +;;; GNU Mes --- Maxwell Equations of Software +;;; Copyright © 2018, 2019 Jan (janneke) Nieuwenhuizen +;;; +;;; This file is part of GNU Mes. +;;; +;;; GNU Mes is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Mes 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 for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Mes. If not, see . + +(mes-use-module (mescc as)) +(mes-use-module (mescc info)) +(include-from-path "mescc/armv4/as.scm") diff --git a/mes/module/mescc/armv4/info.mes b/mes/module/mescc/armv4/info.mes new file mode 100644 index 00000000..d68f7af0 --- /dev/null +++ b/mes/module/mescc/armv4/info.mes @@ -0,0 +1,23 @@ +;;; -*-scheme-*- + +;;; GNU Mes --- Maxwell Equations of Software +;;; Copyright © 2018,2019 Jan (janneke) Nieuwenhuizen +;;; +;;; This file is part of GNU Mes. +;;; +;;; GNU Mes is free software; you can redistribute it and/or modify it +;;; under the terms of the GNU General Public License as published by +;;; the Free Software Foundation; either version 3 of the License, or (at +;;; your option) any later version. +;;; +;;; GNU Mes 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 for more details. +;;; +;;; You should have received a copy of the GNU General Public License +;;; along with GNU Mes. If not, see . + +(mes-use-module (mescc info)) +(mes-use-module (mescc armv4 as)) +(include-from-path "mescc/armv4/info.scm") diff --git a/mes/module/mescc/mescc.mes b/mes/module/mescc/mescc.mes index 87370887..7303e0e1 100644 --- a/mes/module/mescc/mescc.mes +++ b/mes/module/mescc/mescc.mes @@ -25,6 +25,7 @@ (mes-use-module (mes getopt-long)) (mes-use-module (mes guile)) +(mes-use-module (mescc armv4 info)) (mes-use-module (mescc i386 info)) (mes-use-module (mescc x86_64 info)) (mes-use-module (mescc preprocess))