This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sys/arch/amiga/stand/bootblock/boot/console.c b/sys/arch/amiga/stand/bootblock/boot/console.c | |
index 08cb523adccd..5e385de0bdd2 100644 | |
--- a/sys/arch/amiga/stand/bootblock/boot/console.c | |
+++ b/sys/arch/amiga/stand/bootblock/boot/console.c | |
@@ -138,8 +138,21 @@ consinit(void *consptr) { | |
goto err; | |
mc->cnior->buf = (void *)mc->w; | |
- if (OpenDevice("console.device", 0, mc->cnior, 0)) | |
- goto err; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/sys/arch/amiga/stand/bootblock/boot/console.c b/sys/arch/amiga/stand/bootblock/boot/console.c | |
index 08cb523adccd..801be4cc5c95 100644 | |
--- a/sys/arch/amiga/stand/bootblock/boot/console.c | |
+++ b/sys/arch/amiga/stand/bootblock/boot/console.c | |
@@ -43,6 +43,24 @@ | |
#include "amigaio.h" | |
#include "libstubs.h" | |
+int32_t EasyRequestArgs(void *, void *, u_int32_t *, void *); | |
+ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Viaduct | |
======= | |
A PCWindow replacement for CBM Bridgeboards for Amiga computers. | |
Why? | |
---- | |
In short, I like crazy projects which don't make any sense whatsoever. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Index: ami-win.c | |
=================================================================== | |
--- ami-win.c (revision 161) | |
+++ ami-win.c (working copy) | |
@@ -147,7 +147,6 @@ | |
#ifdef USE_CGX_OVERLAY | |
int use_overlay = 0; | |
-UWORD * vlayer_baseaddress = NULL; | |
APTR VLHandle = NULL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
HOST=https://repo.maven.apache.org/maven2/ | |
WGET_OPTS="-N -nH -x --cut-dirs=1" | |
ARG=$1 | |
if [ -z "$ARG" ]; then | |
echo "No arg." | |
exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{$MODE OBJFPC} | |
program MonthsAndSeasons; | |
uses | |
sysutils, dateutils; | |
function hasArguments: boolean; | |
const | |
yesNo: array[boolean] of string = ( 'No', 'Yes' ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.key NOOXY/S,NOKCON/S | |
.bra { | |
.ket } | |
; $VER: init 40.4 (21.5.15) (c) 2003-2015 Charlie/Singular Crew | |
; Simple initialization script for use with BootWithNoStartup | |
; on expanded classic Amiga systems. | |
; | |
; This script is not generic, and you will probably have to | |
; customize it for your and your system's needs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
This file is part of the Free Pascal run time library. | |
Copyright (c) 1999 by Michael Van Canneyt, member of the | |
Free Pascal development team | |
Implements a memory manager that uses the C memory management. | |
See the file COPYING.FPC, included in this distribution, | |
for details about the copyright. |