diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2018-05-15 19:46:08 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-05-15 19:46:08 +0200 |
| commit | c2b0779c68ce50514e19e021084328d265b53663 (patch) | |
| tree | cab4451d098d94a9de3a13bb9cd1b3721b1f51f1 /miasm2/jitter/op_semantics.c | |
| parent | b0db47c82568f7bf78ce1fdfe059569d6efd019a (diff) | |
| parent | d87f5e3c45edd586c6c1ac77a3e485a33e95e236 (diff) | |
| download | miasm-c2b0779c68ce50514e19e021084328d265b53663.tar.gz miasm-c2b0779c68ce50514e19e021084328d265b53663.zip | |
Merge pull request #742 from commial/refactor/x86_cpuid
Rename x86 specific op 'cpuid' to 'x86_cpuid'
Diffstat (limited to 'miasm2/jitter/op_semantics.c')
| -rw-r--r-- | miasm2/jitter/op_semantics.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miasm2/jitter/op_semantics.c b/miasm2/jitter/op_semantics.c index 5500ea92..82f56422 100644 --- a/miasm2/jitter/op_semantics.c +++ b/miasm2/jitter/op_semantics.c @@ -296,10 +296,10 @@ unsigned int my_imul08(unsigned int a, unsigned int b) -unsigned int cpuid(unsigned int a, unsigned int reg_num) +unsigned int x86_cpuid(unsigned int a, unsigned int reg_num) { if (reg_num >3){ - fprintf(stderr, "not implemented cpuid reg %x\n", reg_num); + fprintf(stderr, "not implemented x86_cpuid reg %x\n", reg_num); exit(EXIT_FAILURE); } @@ -333,7 +333,7 @@ unsigned int cpuid(unsigned int a, unsigned int reg_num) } } else{ - fprintf(stderr, "WARNING not implemented cpuid index %X!\n", a); + fprintf(stderr, "WARNING not implemented x86_cpuid index %X!\n", a); //exit(EXIT_FAILURE); } return 0; |