mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
13 lines
244 B
C++
13 lines
244 B
C++
#include <Core/Core.h>
|
|
#include <Xed/Xed.h>
|
|
|
|
using namespace Upp;
|
|
|
|
CONSOLE_APP_MAIN
|
|
{
|
|
uint8_t buf[15] = {
|
|
0xf2, 0x2e, 0x4f, 0x0F, 0x85, 0x99, 0x00, 0x00, 0x00
|
|
};
|
|
|
|
Cout() << "Length = " << XED.InstructionLength(buf) << "\n";
|
|
}
|