python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Reading and writing memory, but having trouble writing to a virtual address
I am trying to write a program where I scan a processes memory and can also write to these addresses(just like cheat engine). However I did some research and found out that the memory I was reading is...
sefato
Votes: 0
Answers: 1
How does the Dirty and Access bits affect the TLB?
I get it that if a page has been accessed it'll have the Access bit set, and if has been written to, the Dirty bit will also be set. But it's unclear to me how these bits affect the TLB/TLB caching? A...
user16469617
Votes: 0
Answers: 1
Calculate the entry point of an ELF file as a physical address (offset from 0)
I am building a RISC-V emulator which basically loads a whole ELF file into memory.
Up to now, I used the pre-compiled test binaries that the risc-v foundation provided which conveniently had an entry...
kiraleos
Votes: 0
Answers: 1
How to limit physical memory in python3?
I am trying to limit the memory usage of a python script, so it gets killed if it exceeds a threshold.
I tried using resource.setrlimit but the module seems to be limited.
resource.setrlimit(resource....
ShadowTerror
Votes: 0
Answers: 0