mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
808 B
45 lines
808 B
#include "insignia.h"
|
|
#include "host_def.h"
|
|
/*[
|
|
Name: rom_basic.c
|
|
Derived From: Base 1.0
|
|
Author: David Rees.
|
|
Created On: Unknown
|
|
Sccs ID: 08/03/93 @(#)rom_basic.c 1.7
|
|
Purpose: A function which reports an error when an attempt
|
|
is made to run ROM BASIC.
|
|
|
|
(c)Copyright Insignia Solutions Ltd., 1990. All rights reserved.
|
|
|
|
]*/
|
|
|
|
#ifdef SEGMENTATION
|
|
/*
|
|
* The following #include specifies the code segment into which this
|
|
* module will by placed by the MPW C compiler on the Mac II running
|
|
* MultiFinder.
|
|
*/
|
|
#include "SOFTPC_SUPPORT.seg"
|
|
#endif
|
|
|
|
|
|
/*
|
|
* O/S include files.
|
|
*/
|
|
#include <stdio.h>
|
|
#include TypesH
|
|
|
|
/*
|
|
* SoftPC include files
|
|
*/
|
|
#include "xt.h"
|
|
#include CpuH
|
|
#include "host.h"
|
|
#include "error.h"
|
|
#include "sas.h"
|
|
|
|
|
|
void rom_basic()
|
|
{
|
|
host_error(EG_NO_ROM_BASIC, ERR_CONT, NULL);
|
|
}
|