]> git.sur5r.net Git - cc65/commitdiff
added makefile and common include
authormrdudz <mrdudz@users.noreply.github.com>
Sat, 22 Nov 2014 15:59:31 +0000 (16:59 +0100)
committermrdudz <mrdudz@users.noreply.github.com>
Sat, 22 Nov 2014 15:59:31 +0000 (16:59 +0100)
24 files changed:
test/val/add3.c
test/val/cc65091020.c
test/val/compare5.c
test/val/cq22.c
test/val/cq241.c
test/val/cq243.c
test/val/cq244.c
test/val/cq25.c
test/val/cq26.c
test/val/cq61.c
test/val/cq626.c
test/val/cq71.c
test/val/cq714.c
test/val/cq714b.c
test/val/cq715.c
test/val/cq72.c
test/val/cq757.c
test/val/cq7813.c
test/val/cq81.c
test/val/cq84.c
test/val/cq85.c
test/val/cq86.c
test/val/cq88.c
test/val/cq9.c

index abbc93b47cc1ac00a5a2c5de56b17a47a0418ddc..c031f1d0f34ff343dcf30b0b8c8c037e7fe96ec7 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     GPL, read COPYING.GPL
 */
 
+#include "common.h"
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <limits.h>
index 8ec11ef8de0c032927104872fdddfe68931195dc..8f62f970e412b8ed2b4197e8e3714b3fa39ee433 100644 (file)
@@ -5,6 +5,8 @@
   !!AUTHOR!!      Johan Kotlinski
 */
 
+#include "common.h"
+
 #include <assert.h>
 
 struct {
index b5dd93f01a0f29041e1d9600f7e7622975476785..b0a9f1649057943eb7d1029064da065685e6aa18 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     GPL, read COPYING.GPL
 */
 
+#include "common.h"
+
 #include <stdio.h>
 #include <limits.h>
 
@@ -291,19 +293,16 @@ void c_minus1(void)
   printf("(long0 != -1)\n");
   if(long0 != -1)
   {
-       LOG_ERROR(1);
        failures++;
   }
   printf("(long0 > 0)\n");
   if(long0 > 0)
   {
-       LOG_ERROR(1);
        failures++;
   }
   printf("(long1 < 0)\n");
   if(long1 < 0)
   {
-       LOG_ERROR(1);
        failures++;
   }
 /*
index 4ce40ecc043bc0926dd1b60346d33e334391d1a7..bcd1570c8aac4855688646079cbdc9aac2e44fdd 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index d7d8ed9529eef6f13fb8c85f6fec704d1a397a3b..76f437e0ccc3a160de81f68456151eb757361703 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 03b08b4d28c26c17cebb2010f63108e7caeb358b..676c73182ff0acb8549f9d7fd045b97c3d0c233a 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 52695bfb6bfc34b3d7a552acb64fd0deb0e0aec6..bedf51e951e6886ad1ac2c2db10053383ba7b959 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index d4a0c4a90006b56bae7dcbe336d51f947dfd627c..9cb2f61c899244dddfd1748bf3ee950c3753cfa2 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 42527e80f5e246e84a63931bf8e388e5fd8a25c7..399f0a45ede098386e02712ef619ca6b1c8b06f9 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 #ifndef CQ26_INCLUDED
 struct defs {
      int cbits;          /* No. of bits per char           */
index f40b21d610fb1e4a6c9dfc2ddd673df5d465c4c6..3dcca645434a8e4673dd8d76912268804620c818 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 7fab43f53f909a8cc6608bd0e5e84584d612ddfb..166d3a95bbdb8f5ab3b01e82968cadd7f8938c8b 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 342b9809aef079b28d5fb6263aea766df4c404cb..7bf0d9e1eaf439e2c0c2ae717e6832b2df772e41 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 /*include "cq26.c"*/ /* hardware check */
 
 struct defs {
index 1d36b18abd952e11510f0da2de21a2b9b825eab5..f4c58801fcc254a7d8559f4a19863575094138d0 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 9a09a88f05040e1525f45c79f978c1a55e51c475..b4908f4cbe6e2e388897980d1e3bef4da9a706e9 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index dd829156c238d0b02c2eeecb45b33e02dfa0cab1..fec9c617048d5f15325e3c95cc79fb265e23bf5d 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 5f60fdcad53db3e647ffd314da321859364b4758..2f956e59d0faceb0d34640efaef7d6a9cebc1c3f 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 7c898ca5bcd2244f118e7d589a8e5e0679c9fa29..60b588555fa55a724cfb67fdc1ce1dd6c7f4d4f1 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 77d34a2a60f309f5c0787c786b78966bbb9435c3..0e743abcdaf639bde64190d16596b5c54645de20 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 198cbc4f67067a04d7b64ff2942a3e3925efb576..0271cae5d6e22fd17d3340d4e1f9aca81bd8d65c 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index fcadd9af66ab55d2bb5693709eef0d810d4daf08..d37c82f294c14bcfccfee9bfc02136c3aea7ac39 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 3e5ef938d75f1d91b324723640542aea659bb503..15b055b20a516886286df65e4aafda403db24e13 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 2800307f7d602929e8f4e2acaec4049a712601bf..9f2409e7a53641589591074dea89f87a7cd19d73 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 77bb9e88c5298eb122a3bd23b2f5e1d4d7764511..a15f75110ad819aa1e48c39b3291aee746019847 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */
index 698443ce660d63daef37624c778c270879d7f91b..228ac9e770ce9ad132a7783b8872492d25fc0d44 100644 (file)
@@ -4,6 +4,8 @@
   !!LICENCE!!     own, freely distributeable for non-profit. read CPYRIGHT.LCC
 */
 
+#include "common.h"
+
 struct defs {
      int cbits;          /* No. of bits per char           */
      int ibits;          /*                 int            */