451274bc80
* mes/module/mescc/armv4/as.mes: New file. * mes/module/mescc/armv4/info.mes: New file. * mes/module/mescc/mescc.mes: Use them.
35 lines
1.2 KiB
Scheme
35 lines
1.2 KiB
Scheme
;;; -*-scheme-*-
|
|
|
|
;;; GNU Mes --- Maxwell Equations of Software
|
|
;;; Copyright © 2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
|
;;;
|
|
;;; 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 <http://www.gnu.org/licenses/>.
|
|
|
|
(mes-use-module (srfi srfi-1))
|
|
(mes-use-module (srfi srfi-13))
|
|
(mes-use-module (srfi srfi-26))
|
|
(mes-use-module (mes misc))
|
|
(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))
|
|
(mes-use-module (mescc compile))
|
|
(mes-use-module (mescc M1))
|
|
(include-from-path "mescc/mescc.scm")
|