rewrite some readme sections

This commit is contained in:
Martin Michelsen
2022-09-22 20:39:26 -07:00
parent 152a90a37b
commit afba535e00
2 changed files with 26 additions and 18 deletions
+1
View File
@@ -25,6 +25,7 @@ def main(argv):
print(f'Finding occurrences of \"{original_destination}\"')
addresses_str = subprocess.check_output(['memwatch', 'Flycast.app', 'find', f'\"{original_destination}\"'])
for line in addresses_str.splitlines():
# line is like '(0) 00007FFF038500A0 (rw-)' (we care only about the address)
tokens = line.split()
if len(tokens) != 3:
continue