/* Copyright (C) 1992, 1999 artofcode LLC. All rights reserved. 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 2 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, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA, 02111-1307. */ /*$Id: zdosio.c,v 1.2.6.1.2.1 2003/01/17 00:49:05 giles Exp $ */ /* MS-DOS direct I/O operators. */ /* These should NEVER be included in a released configuration! */ #include "dos_.h" #include "ghost.h" #include "oper.h" #include "store.h" /* .inport */ private int zinport(i_ctx_t *i_ctx_p) { os_ptr op = osp; check_type(*op, t_integer); make_int(op, inport((int)op->value.intval)); return 0; } /* .inportb */ private int zinportb(i_ctx_t *i_ctx_p) { os_ptr op = osp; check_type(*op, t_integer); make_int(op, inportb((int)op->value.intval)); return 0; } /* .outport - */ private int zoutport(i_ctx_t *i_ctx_p) { os_ptr op = osp; check_type(*op, t_integer); check_type(op[-1], t_integer); outport((int)op[-1].value.intval, (int)op->value.intval); pop(1); return 0; } /* .outportb - */ private int zoutportb(i_ctx_t *i_ctx_p) { os_ptr op = osp; check_type(*op, t_integer); check_int_leu(op[-1], 0xff); outportb((int)op[-1].value.intval, (byte) op->value.intval); pop(1); return 0; } /* .peek */ private int zpeek(i_ctx_t *i_ctx_p) { os_ptr op = osp; check_type(*op, t_integer); make_int(op, *(byte *) (op->value.intval)); return 0; } /* .poke - */ private int zpoke(i_ctx_t *i_ctx_p) { os_ptr op = osp; check_type(*op, t_integer); check_int_leu(op[-1], 0xff); *(byte *) (op[-1].value.intval) = (byte) op->value.intval; pop(1); return 0; } /* ------ Operator initialization ------ */ const op_def zdosio_op_defs[] = { {"1.inport", zinport}, {"1.inportb", zinportb}, {"2.outport", zoutport}, {"2.outportb", zoutportb}, {"1.peek", zpeek}, {"2.poke", zpoke}, op_def_end(0) };