~ubuntu-branches/ubuntu/raring/vice/raring

« back to all changes in this revision

Viewing changes to src/arch/unix/uirs232petplus4cbm2.c

  • Committer: Bazaar Package Importer
  • Author(s): Zed Pobre
  • Date: 2005-02-01 11:30:26 UTC
  • mto: (9.1.1 lenny) (1.1.6 upstream)
  • mto: This revision was merged to the branch mainline in revision 4.
  • Revision ID: james.westby@ubuntu.com-20050201113026-6gy97mcqlg2ykg4z
Tags: upstream-1.16
Import upstream version 1.16

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * uirs232petplus4cbm2.c
 
3
 *
 
4
 * Written by
 
5
 *  Andreas Boose <viceteam@t-online.de>
 
6
 *  Andr� Fachat <a.fachat@physik.tu-chemnitz.de>
 
7
 *
 
8
 * This file is part of VICE, the Versatile Commodore Emulator.
 
9
 * See README for copyright notice.
 
10
 *
 
11
 *  This program is free software; you can redistribute it and/or modify
 
12
 *  it under the terms of the GNU General Public License as published by
 
13
 *  the Free Software Foundation; either version 2 of the License, or
 
14
 *  (at your option) any later version.
 
15
 *
 
16
 *  This program is distributed in the hope that it will be useful,
 
17
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
 *  GNU General Public License for more details.
 
20
 *
 
21
 *  You should have received a copy of the GNU General Public License
 
22
 *  along with this program; if not, write to the Free Software
 
23
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
 
24
 *  02111-1307  USA.
 
25
 *
 
26
 */
 
27
 
 
28
#include "vice.h"
 
29
 
 
30
#include <stdio.h>
 
31
 
 
32
#include "uiacia1.h"
 
33
#include "uimenu.h"
 
34
#include "uirs232.h"
 
35
#include "uirs232petplus4cbm2.h"
 
36
 
 
37
 
 
38
ui_menu_entry_t uirs232petplus4cbm2_submenu[] = {
 
39
    { N_("ACIA device"),
 
40
      NULL, NULL, uiacia1_device_submenu },
 
41
    { "--" },
 
42
    { N_("Serial 1 device..."), (ui_callback_t)set_rs232_device_file,
 
43
      (ui_callback_data_t)"RsDevice1", NULL },
 
44
    { N_("Serial 1 baudrate"),
 
45
      NULL, NULL, ser1_baud_submenu },
 
46
    { "--" },
 
47
    { N_("Serial 2 device..."), (ui_callback_t)set_rs232_device_file,
 
48
      (ui_callback_data_t)"RsDevice2", NULL },
 
49
    { N_("Serial 2 baudrate"),
 
50
      NULL, NULL, ser2_baud_submenu },
 
51
    { "--" },
 
52
    { N_("Dump filename..."), (ui_callback_t)set_rs232_dump_file,
 
53
      (ui_callback_data_t)"RsDevice3", NULL },
 
54
    { "--" },
 
55
    { N_("Program name to exec..."), (ui_callback_t)set_rs232_exec_file,
 
56
      (ui_callback_data_t)"RsDevice4", NULL },
 
57
    { NULL }
 
58
};
 
59