diff options
-rw-r--r-- | README.md | 9 | ||||
-rw-r--r-- | doc/casm.html | 81 | ||||
-rw-r--r-- | src/6502.c | 2 | ||||
-rw-r--r-- | src/6502.h | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | src/65c816.c | 2 | ||||
-rw-r--r-- | src/65c816.h | 2 | ||||
-rw-r--r-- | src/alias.c | 2 | ||||
-rw-r--r-- | src/alias.h | 2 | ||||
-rw-r--r-- | src/basetype.h | 2 | ||||
-rw-r--r-- | src/casm.c | 4 | ||||
-rw-r--r-- | src/cmd.h | 2 | ||||
-rw-r--r-- | src/codepage.c | 2 | ||||
-rw-r--r-- | src/codepage.h | 2 | ||||
-rw-r--r-- | src/expr.c | 2 | ||||
-rw-r--r-- | src/expr.h | 2 | ||||
-rw-r--r-- | src/gbcpu.c | 2 | ||||
-rw-r--r-- | src/gbcpu.h | 2 | ||||
-rw-r--r-- | src/gbout.c | 2 | ||||
-rw-r--r-- | src/gbout.h | 2 | ||||
-rw-r--r-- | src/global.h | 2 | ||||
-rw-r--r-- | src/label.c | 2 | ||||
-rw-r--r-- | src/label.h | 2 | ||||
-rw-r--r-- | src/libout.c | 4 | ||||
-rw-r--r-- | src/libout.h | 2 | ||||
-rw-r--r-- | src/listing.c | 2 | ||||
-rw-r--r-- | src/listing.h | 2 | ||||
-rw-r--r-- | src/macro.c | 2 | ||||
-rw-r--r-- | src/macro.h | 2 | ||||
-rw-r--r-- | src/output.c | 2 | ||||
-rw-r--r-- | src/output.h | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | src/parse.c | 2 | ||||
-rw-r--r-- | src/parse.h | 2 | ||||
-rw-r--r-- | src/rawout.c | 2 | ||||
-rw-r--r-- | src/rawout.h | 2 | ||||
-rw-r--r-- | src/snesout.c | 2 | ||||
-rw-r--r-- | src/snesout.h | 2 | ||||
-rw-r--r-- | src/specout.c | 2 | ||||
-rw-r--r-- | src/specout.h | 2 | ||||
-rw-r--r-- | src/stack.c | 2 | ||||
-rw-r--r-- | src/stack.h | 2 | ||||
-rw-r--r-- | src/state.c | 2 | ||||
-rw-r--r-- | src/state.h | 2 | ||||
-rw-r--r-- | src/t64out.c | 2 | ||||
-rw-r--r-- | src/t64out.h | 2 | ||||
-rw-r--r-- | src/util.c | 2 | ||||
-rw-r--r-- | src/util.h | 2 | ||||
-rw-r--r-- | src/varchar.c | 2 | ||||
-rw-r--r-- | src/varchar.h | 2 | ||||
-rw-r--r-- | src/z80.c | 2 | ||||
-rw-r--r-- | src/z80.h | 2 | ||||
-rw-r--r-- | src/zx81out.c | 2 | ||||
-rw-r--r-- | src/zx81out.h | 2 |
52 files changed, 138 insertions, 56 deletions
@@ -33,13 +33,14 @@ Currently **casm** supports the following output drivers: * T64 Commodore 64 tape image * ZX81 P file * Gameboy ROM +* SNES ROM +* A simple library format for larger projects. Plans for: -* SNES ROM * NES ROM -## Major Changes in V1.1 +## Major Changes in V1.2 -* Added Gameboy support -* Fixed breaking bugs in 6502 generation, especially around zero-page addressing +* Added basic SNES support for processor and output. +* Added a library format for linking together of files in a larger project. diff --git a/doc/casm.html b/doc/casm.html index 07b2c91..5628b8d 100644 --- a/doc/casm.html +++ b/doc/casm.html @@ -346,6 +346,13 @@ the skipped bytes unless the optional <i>fill</i> is supplied. </td></tr> <tr><td class="cmd"> +import <i>filename</i></code> +</td> +<td class="def"> +Includes a simple library file as generated by casm. See the <a href="#libout">section on simple library files</a> for more details. +</td></tr> + +<tr><td class="cmd"> include <i>filename</i></code> </td> <td class="def"> @@ -926,6 +933,14 @@ A Nintendo Gameboy ROM file. A SNES ROM file. </td></tr> +<tr><td class="cmd"> +<a href="#libout">lib</a> +</td> +<td class="def"> +A simple library format that allows the importing of pre-built memory and +labels. +</td></tr> + </table> </td></tr> @@ -1200,6 +1215,72 @@ driver would generate. </table> +<h3 id="libout">Simple Library Output Format</h3> + +<p>This mode produces a simple library file that can be imported using the +<b>import</b> command. This is of use if you wish to split a large project +into smaller assembly jobs, for example, to stop you needing to assemble large +chunks of graphics data every time. The library contains all the memory from +the assembled file and records the values of all global labels. Note that +private macro variables and local labels aren't saved, but they'd be useless +anyway.</p> + +<p>.e.g.</p> + +<b>Makefile</b> +<pre class="codeblock"> +game.sfc: game.lib gfx.lib + casm link.asm + +game.lib: game.asm + casm game.asm + +gfx.lib: gfx.asm + casm gfx.asm +</pre> + +<b>link.asm</b> +<pre class="codeblock"> + processor 65c816 + + option output-file,"game.sfc" + option output-format,snes + + ; These labels actually come from game.asm + ; + option snes-irq,vbl,vbl_handler + option snes-irq,irq,irq_handler + + import "game.lib" + import "gfx.lib" +</pre> + +<b>game.asm</b> +<pre class="codeblock"> + processor 65c816 + + org $8000 + bank 0 + + ; + ; Lots of code.... + ; +</pre> + + +<b>gfx.asm</b> +<pre class="codeblock"> + processor 65c816 + + org $8000 + bank 1 + + ; + ; Lots of gfx data.... + ; +</pre> + + <h2>Listing</h2> <p> @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/65c816.c b/src/65c816.c index 7469506..b9d5cd0 100755..100644 --- a/src/65c816.c +++ b/src/65c816.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/65c816.h b/src/65c816.h index be972ec..ffc1f09 100644 --- a/src/65c816.h +++ b/src/65c816.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/alias.c b/src/alias.c index 01017bd..cdfa7a8 100644 --- a/src/alias.c +++ b/src/alias.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/alias.h b/src/alias.h index 7f55d7c..2d66b73 100644 --- a/src/alias.h +++ b/src/alias.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/basetype.h b/src/basetype.h index 1cf4892..d791909 100644 --- a/src/basetype.h +++ b/src/basetype.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -58,7 +58,7 @@ */ static const char *casm_usage = -"Version 1.2 development\n" +"Version 1.2\n" "\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/codepage.c b/src/codepage.c index cecdf66..4ae9efe 100644 --- a/src/codepage.c +++ b/src/codepage.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/codepage.h b/src/codepage.h index 5da55cb..36c98d6 100644 --- a/src/codepage.h +++ b/src/codepage.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/gbcpu.c b/src/gbcpu.c index 074bf82..8756c06 100644 --- a/src/gbcpu.c +++ b/src/gbcpu.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/gbcpu.h b/src/gbcpu.h index 68b0d7c..6fc8beb 100644 --- a/src/gbcpu.h +++ b/src/gbcpu.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/gbout.c b/src/gbout.c index 71547f9..542ff03 100644 --- a/src/gbout.c +++ b/src/gbout.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/gbout.h b/src/gbout.h index 9140844..1742cbd 100644 --- a/src/gbout.h +++ b/src/gbout.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/global.h b/src/global.h index 7591719..91930af 100644 --- a/src/global.h +++ b/src/global.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/label.c b/src/label.c index 5fdc83e..78a4793 100644 --- a/src/label.c +++ b/src/label.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/label.h b/src/label.h index 5b79d41..a190154 100644 --- a/src/label.h +++ b/src/label.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/libout.c b/src/libout.c index 9303a2a..5aed18c 100644 --- a/src/libout.c +++ b/src/libout.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -19,7 +19,7 @@ ------------------------------------------------------------------------- - Various output type handlers. + LIB binary file output */ #include <stdlib.h> diff --git a/src/libout.h b/src/libout.h index 851a168..40cfc87 100644 --- a/src/libout.h +++ b/src/libout.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/listing.c b/src/listing.c index 59c3491..13fcc2e 100644 --- a/src/listing.c +++ b/src/listing.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/listing.h b/src/listing.h index 38588f5..10ac70e 100644 --- a/src/listing.h +++ b/src/listing.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/macro.c b/src/macro.c index 3e0ce2b..c55fc16 100644 --- a/src/macro.c +++ b/src/macro.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/macro.h b/src/macro.h index ed4c688..9cc1ea6 100644 --- a/src/macro.h +++ b/src/macro.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/output.c b/src/output.c index 8a8d230..ac05216 100644 --- a/src/output.c +++ b/src/output.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/output.h b/src/output.h index 2ae3ea5..03131e4 100644 --- a/src/output.h +++ b/src/output.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/parse.c b/src/parse.c index 38d5f90..fe9a989 100755..100644 --- a/src/parse.c +++ b/src/parse.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/parse.h b/src/parse.h index ee1e37d..f8e5ab1 100644 --- a/src/parse.h +++ b/src/parse.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/rawout.c b/src/rawout.c index 3f75b50..6c8706c 100644 --- a/src/rawout.c +++ b/src/rawout.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/rawout.h b/src/rawout.h index 08fc42f..80f8161 100644 --- a/src/rawout.h +++ b/src/rawout.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/snesout.c b/src/snesout.c index c8b0bac..138dce2 100644 --- a/src/snesout.c +++ b/src/snesout.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/snesout.h b/src/snesout.h index ecc4c9e..fa65324 100644 --- a/src/snesout.h +++ b/src/snesout.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/specout.c b/src/specout.c index b29b6ba..dbb8684 100644 --- a/src/specout.c +++ b/src/specout.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/specout.h b/src/specout.h index 7520ed2..9ba8874 100644 --- a/src/specout.h +++ b/src/specout.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/stack.c b/src/stack.c index a59c2d5..96055d4 100644 --- a/src/stack.c +++ b/src/stack.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/stack.h b/src/stack.h index e84911f..17c142d 100644 --- a/src/stack.h +++ b/src/stack.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/state.c b/src/state.c index 83eea97..0e47a05 100644 --- a/src/state.c +++ b/src/state.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/state.h b/src/state.h index 2f4d856..100aaeb 100644 --- a/src/state.h +++ b/src/state.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/t64out.c b/src/t64out.c index 6aa82f2..18bfcba 100644 --- a/src/t64out.c +++ b/src/t64out.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/t64out.h b/src/t64out.h index b4c5103..ff7bc29 100644 --- a/src/t64out.h +++ b/src/t64out.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/varchar.c b/src/varchar.c index 592ff74..608833d 100644 --- a/src/varchar.c +++ b/src/varchar.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/varchar.h b/src/varchar.h index 7dd15e3..da6b352 100644 --- a/src/varchar.h +++ b/src/varchar.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/zx81out.c b/src/zx81out.c index fe4d83c..8635e09 100644 --- a/src/zx81out.c +++ b/src/zx81out.c @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/src/zx81out.h b/src/zx81out.h index e6f3190..f5429a8 100644 --- a/src/zx81out.h +++ b/src/zx81out.h @@ -2,7 +2,7 @@ casm - Simple, portable assembler - Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.demon.co.uk) + Copyright (C) 2003-2015 Ian Cowburn (ianc@noddybox.co.uk) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by |