Last change
on this file since 555b171 was a06aa8b, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
Added skeleton device files.
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Line | |
---|
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 |
|
---|
18 | #include <all.h>
|
---|
19 |
|
---|
20 | #define ver(...) { \
|
---|
21 | if (fpu_verbose) { \
|
---|
22 | SDL_LogVerbose(SDL_LOG_CATEGORY_APPLICATION, __VA_ARGS__); \
|
---|
23 | } \
|
---|
24 | }
|
---|
25 |
|
---|
26 | bool fpu_verbose = false;
|
---|
27 |
|
---|
28 | void fpu_init(void)
|
---|
29 | {
|
---|
30 | ver("fpu init");
|
---|
31 | }
|
---|
32 |
|
---|
33 | void fpu_quit(void)
|
---|
34 | {
|
---|
35 | ver("fpu quit");
|
---|
36 | }
|
---|
37 |
|
---|
38 | void fpu_exec(void)
|
---|
39 | {
|
---|
40 | ver("fpu exec");
|
---|
41 | }
|
---|
42 |
|
---|
43 | uint32_t fpu_read(uint32_t off, int32_t sz)
|
---|
44 | {
|
---|
45 | ver("fpu rd 0x%04x:%d", off, sz * 8);
|
---|
46 | return 0;
|
---|
47 | }
|
---|
48 |
|
---|
49 | void fpu_write(uint32_t off, int32_t sz, uint32_t val)
|
---|
50 | {
|
---|
51 | ver("fpu wr 0x%04x:8 0x%0*x", off, sz * 2, val);
|
---|
52 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.