source: buchla-emu/emu/all.h@ 3c30832

Last change on this file since 3c30832 was 3c30832, checked in by Thomas Lopatic <thomas@…>, 7 years ago

Interrupt handling. Serial console shows ROMP.

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[a06aa8b]1/*
2 * Copyright (C) 2017 The Contributors
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or (at
7 * your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * A copy of the GNU General Public License can be found in the file
15 * "gpl-v3.txt" in the top directory of this repository.
16 */
17
[ff8d800]18#include <stdbool.h>
19#include <stddef.h>
20#include <stdint.h>
21#include <stdio.h>
[bb4fd0c]22#include <string.h>
[ff8d800]23#include <unistd.h>
24
[ebc8f69]25#include <xmmintrin.h>
26
[ff8d800]27#include <m68k.h>
28
29#include <SDL2/SDL.h>
[2f9f352]30#include <SDL2/SDL_ttf.h>
[ff8d800]31
32#define inf(...) SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION, __VA_ARGS__);
33#define err(...) SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, __VA_ARGS__);
34
[4c71d39]35#define _ver(_v, _t, ...) { \
36 if (_v > _t) { \
37 SDL_LogVerbose(SDL_LOG_CATEGORY_APPLICATION, __VA_ARGS__); \
38 } \
39}
40
[ff8d800]41#define fail(...) { \
42 SDL_LogError(SDL_LOG_CATEGORY_APPLICATION, __VA_ARGS__); \
43 exit(1); \
44}
45
[a06aa8b]46#define ARRAY_COUNT(_a) (int32_t)(sizeof (_a) / sizeof (_a)[0])
47
[bb4fd0c]48#define WIN_W (1520 * 2 / 3)
49#define WIN_H (950 * 2 / 3)
50
[4c71d39]51extern int32_t sdl_verbose;
52extern int32_t cpu_verbose;
53extern int32_t fpu_verbose;
54extern int32_t vid_verbose;
55extern int32_t tim_verbose;
56extern int32_t lcd_verbose;
57extern int32_t ser_verbose;
58extern int32_t mid_verbose;
59extern int32_t fdd_verbose;
60extern int32_t snd_verbose;
61extern int32_t led_verbose;
62extern int32_t kbd_verbose;
[ff8d800]63
[bb4fd0c]64extern SDL_Window *sdl_win;
65extern SDL_Renderer *sdl_ren;
66
[ff8d800]67extern void sdl_init(void);
68extern void sdl_quit(void);
69
[b909777]70extern void cpu_loop(const char *bios);
[a06aa8b]71
72extern void fpu_init(void);
73extern void fpu_quit(void);
[3c30832]74extern bool fpu_exec(void);
[a06aa8b]75extern uint32_t fpu_read(uint32_t off, int32_t sz);
76extern void fpu_write(uint32_t off, int32_t sz, uint32_t val);
77
78extern void vid_init(void);
79extern void vid_quit(void);
[3c30832]80extern bool vid_exec(void);
[a06aa8b]81extern uint32_t vid_read(uint32_t off, int32_t sz);
82extern void vid_write(uint32_t off, int32_t sz, uint32_t val);
83
84extern void tim_init(void);
85extern void tim_quit(void);
[3c30832]86extern bool tim_exec(void);
[a06aa8b]87extern uint32_t tim_read(uint32_t off, int32_t sz);
88extern void tim_write(uint32_t off, int32_t sz, uint32_t val);
89
90extern void lcd_init(void);
91extern void lcd_quit(void);
[3c30832]92extern bool lcd_exec(void);
[a06aa8b]93extern uint32_t lcd_read(uint32_t off, int32_t sz);
94extern void lcd_write(uint32_t off, int32_t sz, uint32_t val);
95
96extern void ser_init(void);
97extern void ser_quit(void);
[3c30832]98extern bool ser_exec(void);
[a06aa8b]99extern uint32_t ser_read(uint32_t off, int32_t sz);
100extern void ser_write(uint32_t off, int32_t sz, uint32_t val);
101
[bb4fd0c]102extern void ser_text(SDL_TextInputEvent *ev);
103extern void ser_key(SDL_KeyboardEvent *ev);
104
[a06aa8b]105extern void mid_init(void);
106extern void mid_quit(void);
[3c30832]107extern bool mid_exec(void);
[a06aa8b]108extern uint32_t mid_read(uint32_t off, int32_t sz);
109extern void mid_write(uint32_t off, int32_t sz, uint32_t val);
110
111extern void fdd_init(void);
112extern void fdd_quit(void);
[3c30832]113extern bool fdd_exec(void);
[a06aa8b]114extern uint32_t fdd_read(uint32_t off, int32_t sz);
115extern void fdd_write(uint32_t off, int32_t sz, uint32_t val);
116
117extern void snd_init(void);
118extern void snd_quit(void);
[3c30832]119extern bool snd_exec(void);
[a06aa8b]120extern uint32_t snd_read(uint32_t off, int32_t sz);
121extern void snd_write(uint32_t off, int32_t sz, uint32_t val);
122
123extern void led_init(void);
124extern void led_quit(void);
[3c30832]125extern bool led_exec(void);
[a06aa8b]126extern uint32_t led_read(uint32_t off, int32_t sz);
127extern void led_write(uint32_t off, int32_t sz, uint32_t val);
128
129extern void kbd_init(void);
130extern void kbd_quit(void);
[3c30832]131extern bool kbd_exec(void);
[a06aa8b]132extern uint32_t kbd_read(uint32_t off, int32_t sz);
133extern void kbd_write(uint32_t off, int32_t sz, uint32_t val);
Note: See TracBrowser for help on using the repository browser.