ugBASIC 1.18
An isomorphic BASIC language compiler for retrocomputers
Loading...
Searching...
No Matches
tester.c
Go to the documentation of this file.
1#include "tester.h"
2
5
6void welcome( ) {
7
8 printf("ugBASIC Compiler TESTER v1.0\n");
9 printf("----------------------------\n");
10 printf("Copyright 2021-2026 Marco Spedaletti (asimov@mclink.it)\n\n");
11 printf("Licensed under the Apache License, Version 2.0 (the \"License\");\n");
12 printf("you may not use this program except in compliance with the License.\n\n");
13
14}
15
16int main( int _argc, char *_argv[] ) {
17
18 welcome( );
19
20 Environment * environment = malloc( sizeof( Environment ) );
21 memset( environment, 0, sizeof( Environment ) );
22
23 printf( "################################################\n" );
24 printf( "############ TEST SUITES ############ \n" );
25 printf( "################################################\n" );
26
27 suite_fp( environment );
28 // suite_fp_6502( environment );
29
30}
int suite_fp(Environment *_environment)
Definition suite_fp.c:3
void welcome()
Definition tester.c:6
int main(int _argc, char *_argv[])
Definition tester.c:16
void * malloc(YYSIZE_T)
struct _Environment Environment
Structure of compilation environment.
int yycolno
Definition ugbc.tab.c:133
int yyposno
Definition ugbc.tab.c:138