mirror of
https://github.com/bitdefender/bddisasm.git
synced 2025-01-03 11:50:55 +00:00
47da322ea5
Improved POPF handling when 16 bit operand size is used. Fixed typo in PUNPCKLBW emulation.
18 lines
441 B
C
18 lines
441 B
C
/*
|
|
* Copyright (c) 2020 Bitdefender
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef DISASM_VER_H
|
|
#define DISASM_VER_H
|
|
|
|
#define DISASM_VERSION_MAJOR 1
|
|
#define DISASM_VERSION_MINOR 34
|
|
#define DISASM_VERSION_REVISION 18
|
|
|
|
// bdshemu depends on bddisasm. It cannot be used without it.
|
|
#define SHEMU_VERSION_MAJOR 1
|
|
#define SHEMU_VERSION_MINOR 1
|
|
#define SHEMU_VERSION_REVISION 16
|
|
|
|
#endif // DISASM_VER_H
|