commit 1fef0ff

Devine Lu Linvega  ·  2025-04-20 20:39:12 +0000 UTC
parent f7580ca
Expanded credits
3 files changed,  +7, -5
+1, -1
1@@ -31,7 +31,7 @@ grab:
2 	@ cp ../uxn-utils/cli/opctest/src/opctest.tal etc/examples/opctest.tal
3 
4 archive:
5-	@ cp src/uxncli.c ../oscean/etc/uxncli.c.txt
6+	@ cp src/uxncli.c ../oscean/etc/uxncli11.c.txt
7 	@ cp src/uxn11.c ../oscean/etc/uxn11.c.txt
8 
9 clean:
+3, -2
 1@@ -16,7 +16,8 @@
 2 #define HEIGHT (40 * 8)
 3 
 4 /*
 5-Copyright (c) 2022-2025 Devine Lu Linvega
 6+Copyright (c) 2021-2025 Devine Lu Linvega, Andrew Alderwick, 
 7+Andrew Richards, Eiríkr Åsheim, Sigrid Solveig Haflínudóttir
 8 
 9 Permission to use, copy, modify, and distribute this software for any
10 purpose with or without fee is hereby granted, provided that the above
11@@ -1308,7 +1309,7 @@ main(int argc, char **argv)
12 {
13 	int i = 1;
14 	if(argc == 2 && argv[1][0] == '-' && argv[1][1] == 'v')
15-		return !fprintf(stdout, "Uxn11 - Varvara Emulator, 8 Apr 2025.\n");
16+		return !fprintf(stdout, "Uxn11 - Varvara Emulator, 20 Apr 2025.\n");
17 	else if(argc == 1)
18 		return !fprintf(stdout, "usage: %s [-v] file.rom [args..]\n", argv[0]);
19 	else if(!display_init())
+3, -2
 1@@ -7,7 +7,8 @@
 2 #define RAM_PAGES 0x10
 3 
 4 /*
 5-Copyright (c) 2021-2025 Devine Lu Linvega, Andrew Alderwick
 6+Copyright (c) 2021-2025 Devine Lu Linvega, Andrew Alderwick, 
 7+Andrew Richards, Eiríkr Åsheim, Sigrid Solveig Haflínudóttir
 8 
 9 Permission to use, copy, modify, and distribute this software for any
10 purpose with or without fee is hereby granted, provided that the above
11@@ -760,7 +761,7 @@ main(int argc, char **argv)
12 {
13 	int i = 1;
14 	if(argc == 2 && argv[1][0] == '-' && argv[1][1] == 'v')
15-		return !fprintf(stdout, "Uxn(cli) - Varvara Emulator, 19 Mar 2025.\n");
16+		return !fprintf(stdout, "Uxn11 - Varvara Emulator(cli), 20 Mar 2025.\n");
17 	else if(argc == 1)
18 		return !fprintf(stdout, "usage: %s [-v] file.rom [args..]\n", argv[0]);
19 	else if(!system_boot((Uint8 *)calloc(0x10000 * RAM_PAGES, sizeof(Uint8)), argv[i++], argc > 2))