Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSamiQemu
QOSamiQemu
/
stubs
/
physmem.c
Code
Commits
Issues
Pulls
Sessions
CI/CD
master
master
c
13 lines
255 Bytes
Copy permalink
Copy
Raw
1
#include
"qemu/osdep.h"
2
#include
"system/ramblock.h"
3
4
RAMBlock
*
qemu_ram_block_from_host
(
void
*
ptr
,
bool
round_offset
,
5
ram_addr_t
*
offset
)
6
{
7
return
NULL
;
8
}
9
10
int
qemu_ram_get_fd
(
const
RAMBlock
*
rb
)
11
{
12
return
-
1
;
13
}