diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-08-30 19:52:45 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-08-30 19:52:45 +0000 |
| commit | 06cb237af682fbc45a72c4e43e3f8126b2c9cac6 (patch) | |
| tree | a0eb1898429941f00da446e1e8c8efdd35864ff9 /apps/plugin.c | |
| parent | 56fd6f9316ee196bfd16a2f102469cb6b040d397 (diff) | |
| download | rockbox-06cb237af682fbc45a72c4e43e3f8126b2c9cac6.zip rockbox-06cb237af682fbc45a72c4e43e3f8126b2c9cac6.tar.gz rockbox-06cb237af682fbc45a72c4e43e3f8126b2c9cac6.tar.bz2 rockbox-06cb237af682fbc45a72c4e43e3f8126b2c9cac6.tar.xz | |
New debug feature: Use the SH1 user break controller to catch illegal memory accesses
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5026 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index a7ae34f..6892cb9 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -259,6 +259,9 @@ static const struct plugin_api rockbox_api = { mpeg_get_file_pos, find_next_frame, mpeg_get_last_header, +#ifndef SIMULATOR + system_memory_guard, +#endif }; int plugin_load(const char* plugin, void* parameter) |