Skip to content
Snippets Groups Projects
Commit 58c1d2e9 authored by 488_MP-4's avatar 488_MP-4
Browse files

first write of mmap

parent e3905d1e
No related branches found
No related tags found
3 merge requests!109Final sdmay24-32 merge to master,!104adding cflib to this branch,!101adding baremetal programs
File added
#include<stdio.h>
#include<stddef.h>
#include<sys/mman.h>
#include<fcntl.h>
#define SHMADDR 0x3F000000
int main(int argc, char *argv[])
{
int fd;
int * memaddr;
fd = open("/dev/mem", O_RDWR);
if (fd == -1)
{
printf("can not access /dev/mem\n" );
return -1;
}
memaddr =
(int*)mmap(NULL, 4096, PROT_READ | PROT_WRITE, MAP_SHARED, fd, SHMADDR);
if (memaddr == MAP_FAILED)
{
printf("mmap failed\n" );
return -1;
}
printf("value=%d\n", *memaddr);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment