Ch3nyang

Results 3 comments of Ch3nyang

> There are some elements to add to the blacklist for Windows 11: in Processes: add `StartMenuExperienceHost.exe,SearchApp.exe,osk.exe` > > ``` > ProcessBlacklist=Virtual PC.exe,StartMenuExperienceHost.exe,SearchApp.exe,osk.exe > ``` > > for the windows...

The command `cmake -A x64 -DCMAKE_INSTALL_PREFIX:PATH=../tdlib -DCMAKE_TOOLCHAIN_FILE:FILEPATH=../vcpkg/scripts/buildsystems/vcpkg.cmake ..` in [build instruction](https://tdlib.github.io/td/build.html) should be added with `-G "Visual Studio 17 2022"`, specifically the parameters should be queried on [CMake Generator](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#visual-studio-generators) according...

出了 @regomne 所说的部分,还可以: 1. 把部分 `rsi`、`rdi` 替换为 `esi`、`edi` 2. phdr 部分可以向上移动 8 个字节,重复使用一部分空间 最终结果可以优化到 151 个字节,代码如下: ```assembly ; hello_world.asm BITS 64 org 0x400000 ehdr: ; Elf64_Ehdr db 0x7f, "ELF", 2,...