summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorGentoo <installgentoo@endianness.com>2022-08-30 22:43:45 +1000
committerGentoo <installgentoo@endianness.com>2022-08-30 22:43:45 +1000
commitf0ced4239a91889f8c65c4683c2137d1bfdbad12 (patch)
tree7b4a6c98677e802e4afc8a49c1c5ce6dad045e1e /main.c
parent87c58d840b2204bfb103356a49859a831fda1c57 (diff)
downloadchip8-master.tar.gz
chip8-master.tar.bz2
chip8-master.zip
added license headerHEADmaster
Diffstat (limited to 'main.c')
-rw-r--r--main.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/main.c b/main.c
index b1158ea..ba41dd4 100644
--- a/main.c
+++ b/main.c
@@ -1,3 +1,14 @@
+/* Copyright (C) 2021 Gentoo-libre Install
+
+ 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
+ the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
+
+ This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
@@ -51,7 +62,6 @@ for(int i = 0; i < 12; ++i){returnPos[i] = 0;}//zero out the stack
if(!argv[1]){fprintf(stderr,"Usage: %s <program>\n", argv[0]); return 1;}
-//FILE *input = fopen("PONG", "r");
FILE *input = fopen(argv[1], "r");
if (!input){fprintf(stderr, "Program not found.\n"); return 1;}