/***************************************************************************** * pce * *****************************************************************************/ /***************************************************************************** * File name: src/arch/vic20/setup.h * * Created: 2020-04-19 by Hampa Hug * * Copyright: (C) 2020 Hampa Hug * *****************************************************************************/ /***************************************************************************** * This program is free software. You can redistribute it and / or modify it * * under the terms of the GNU General Public License version 2 as published * * by the Free Software Foundation. * * * * 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. * *****************************************************************************/ #ifndef PCE_VIC20_SETUP_H #define PCE_VIC20_SETUP_H 1 #include #include "vic20.h" void v20_setup_keybd (vic20_t *sim, ini_sct_t *ini); vic20_t *v20_new (ini_sct_t *ini); void v20_del (vic20_t *sim); #endif