--- src/bin/mined/mined.h 2005/03/15 01:56:24 1.1 +++ src/bin/mined/mined.h 2005/03/15 02:13:15 1.2 @@ -1,9 +1,48 @@ -/* $DragonFly$ */ +/* + * Copyright (c) 1987,1997, Prentice Hall + * All rights reserved. + * + * Redistribution and use of the MINIX operating system in source and + * binary forms, with or without modification, are permitted provided + * that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following + * disclaimer in the documentation and/or other materials provided + * with the distribution. + * + * * Neither the name of Prentice Hall nor the names of the software + * authors or contributors may be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS, AUTHORS, AND + * CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + * IN NO EVENT SHALL PRENTICE HALL OR ANY AUTHORS OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR + * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE + * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + * + * [original code from minix codebase] + * $DragonFly$* + */ /*========================================================================* * Mined.h * *========================================================================*/ #define _PROTOTYPE(a, b) a b +#define INTEL 1 +#define CHIP INTEL +#define ASSUME_CONS25 #include #include @@ -34,7 +73,7 @@ extern char *pos_string; /* Absolute cur #define XMAX 79 /* Maximum x coordinate starting at 0*/ #define SCREENMAX (YMAX - 1) /* Number of lines displayed */ -#define XBREAK (XMAX - 0) /* Line shift at this coordinate */ +#define XBREAK (XMAX - 1) /* Line shift at this coordinate */ #define SHIFT_SIZE 25 /* Number of chars to shift */ #define SHIFT_MARK '!' /* Char indicating line continues */ #define MAX_CHARS 1024 /* Maximum chars on one line */ @@ -320,6 +359,7 @@ _PROTOTYPE(void LOW, (void)); _PROTOTYPE(void BL, (void)); _PROTOTYPE(void EL, (void)); _PROTOTYPE(void GOTO, (void)); +_PROTOTYPE(void HLP, (void)); _PROTOTYPE(void PD, (void)); _PROTOTYPE(void PU, (void)); _PROTOTYPE(void HO, (void));