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
|
Rev | Line | |
---|
[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 |
|
---|
| 18 | #include <all.h>
|
---|
| 19 |
|
---|
| 20 | #define ver(...) { \
|
---|
| 21 | if (mid_verbose) { \
|
---|
| 22 | SDL_LogVerbose(SDL_LOG_CATEGORY_APPLICATION, __VA_ARGS__); \
|
---|
| 23 | } \
|
---|
| 24 | }
|
---|
| 25 |
|
---|
| 26 | bool mid_verbose = false;
|
---|
| 27 |
|
---|
| 28 | void mid_init(void)
|
---|
| 29 | {
|
---|
| 30 | ver("mid init");
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | void mid_quit(void)
|
---|
| 34 | {
|
---|
| 35 | ver("mid quit");
|
---|
| 36 | }
|
---|
| 37 |
|
---|
| 38 | void mid_exec(void)
|
---|
| 39 | {
|
---|
| 40 | ver("mid exec");
|
---|
| 41 | }
|
---|
| 42 |
|
---|
| 43 | uint32_t mid_read(uint32_t off, int32_t sz)
|
---|
| 44 | {
|
---|
| 45 | ver("mid rd %u:%d", off, sz * 8);
|
---|
| 46 | return 0;
|
---|
| 47 | }
|
---|
| 48 |
|
---|
| 49 | void mid_write(uint32_t off, int32_t sz, uint32_t val)
|
---|
| 50 | {
|
---|
| 51 | ver("mid wr %u:8 0x%0*x", off, sz * 2, val);
|
---|
| 52 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.