summaryrefslogtreecommitdiff
path: root/src/video_core/pica.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/pica.cpp')
-rw-r--r--src/video_core/pica.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/video_core/pica.cpp b/src/video_core/pica.cpp
new file mode 100644
index 000000000..543d9c443
--- /dev/null
+++ b/src/video_core/pica.cpp
@@ -0,0 +1,20 @@
1// Copyright 2015 Citra Emulator Project
2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included.
4
5#include <string.h>
6
7#include "pica.h"
8
9namespace Pica {
10
11State g_state;
12
13void Init() {
14}
15
16void Shutdown() {
17 memset(&g_state, 0, sizeof(State));
18}
19
20}