We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7b4b07 commit 40e36caCopy full SHA for 40e36ca
examples/src/freebsd/syscall_dump.py
@@ -2,7 +2,8 @@
2
#
3
# Cross Platform and Multi Architecture Advanced Binary Emulation Framework
4
# Built on top of Unicorn emulator (www.unicorn-engine.org)
5
-# The 'freebsd_syscall' can be download at 'https://github.com/freebsd/freebsd/blob/master/sys/kern/syscalls.master'.
+
6
+# https://github.com/freebsd/freebsd/blob/master/sys/kern/syscalls.master
7
8
import re
9
@@ -39,5 +40,5 @@ def read_file(f):
39
40
line = f.readline()
41
42
if __name__ == '__main__':
- file = open('./freebsd_syscall')
43
+ file = open('./syscalls.master')
44
read_file(file)
0 commit comments