-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmain.cpp
More file actions
28 lines (24 loc) · 971 Bytes
/
main.cpp
File metadata and controls
28 lines (24 loc) · 971 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// *******************************************************************************************************************************
// *******************************************************************************************************************************
//
// Name: main.c
// Purpose: Main program
// Created: 29th June 2022
// Author: Paul Robson ([email protected])
//
// *******************************************************************************************************************************
// *******************************************************************************************************************************
#include <stdio.h>
#include "gfx.h"
#include "sys_processor.h"
#include "sys_debug_system.h"
#include "debugger.h"
int main(int argc,char *argv[]) {
DEBUG_ARGUMENTS(argc,argv);
DEBUG_RESET();
GFXOpenWindow(WIN_TITLE,WIN_WIDTH,WIN_HEIGHT,WIN_BACKCOLOUR);
GFXStart(1);
CPUEndRun();
GFXCloseWindow();
return(0);
}