Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
PUAE
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
PUAE
Commits
df9b1bb3
Commit
df9b1bb3
authored
Jan 17, 2011
by
GnoStiC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
puae 2.3.1
parent
34c99a2e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
1 deletion
+22
-1
maccess.h
src/md-generic/maccess.h
+1
-0
rpt.h
src/md-generic/rpt.h
+19
-1
maccess.h
src/md-ppc/maccess.h
+2
-0
No files found.
src/md-generic/maccess.h
View file @
df9b1bb3
...
...
@@ -54,3 +54,4 @@ STATIC_INLINE void do_put_mem_byte(uae_u8 *a, uae_u8 v)
#undef NO_INLINE_MEMORY_ACCESS
#undef MD_HAVE_MEM_1_FUNCS
#define ALIGN_POINTER_TO32(p) ((~(unsigned long)(p)) & 3)
src/md-generic/rpt.h
View file @
df9b1bb3
...
...
@@ -4,5 +4,23 @@
* Definitions for accessing cycle counters on a given machine, if possible.
*
* Copyright 1998 Bernd Schmidt
* Copyright 20
04 Richard Drummond
* Copyright 20
11 Mustafa TUFAN
*/
#ifndef EUAE_MACHDEP_RPT_H
#define EUAE_MACHDEP_RPT_H
STATIC_INLINE
uae_s32
read_processor_time
(
void
)
{
return
0
;
}
STATIC_INLINE
frame_time_t
machdep_gethrtime
(
void
)
{
return
read_processor_time
();
}
frame_time_t
machdep_gethrtimebase
(
void
);
int
machdep_inithrtimer
(
void
);
#endif
/* EUAE_MACHDEP_RPT_H */
src/md-ppc/maccess.h
View file @
df9b1bb3
...
...
@@ -38,3 +38,5 @@ static __inline__ void do_put_mem_byte(uae_u8 *a, uae_u8 v)
#define call_mem_get_func(func, addr) ((*func)(addr))
#define call_mem_put_func(func, addr, v) ((*func)(addr, v))
#define ALIGN_POINTER_TO32(p) ((~(unsigned long)(p)) & 3)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment