0%

删除元素

待删除元素在AX中

数组元素无序,在附加段,首地址为DI,第一个元素为数组长度,比如:

1
2
3
4
cnt dw 6
arr dw 1, 2, 3, 4, 5, 6
......
lea di, cnt
阅读全文 »

常用ASCII码

48 ~ 57: '0' ~ '9',65 ~ 90: 'A' ~ 'Z',97 ~ 122: 'a' ~ 'z'

十进制转二进制

输入十进制数保存到BX

阅读全文 »

问题

Unity WebGL打包发布时在Building native binary with IL2CPP...报错:

1
2
3
4
5
6
7
8
9
10
11
12
13
Failed running D:\DownloadApps\Unity\2019.4.8f1\Editor\Data\il2cpp/build/deploy/net471/il2cpp.exe --convert-to-cpp --dotnetprofile="unityaot" --compile-cpp --libil2cpp-static --platform="WebGL" --architecture="EmscriptenJavaScript" --configuration="Release"

......
......

ObjectFiles: 217 of which compiled: 0
Total compilation time: 369 milliseconds.
Response file: C:\Users\���ܲ�\AppData\Local\Temp\_47191~1\response.rsp
Response file: C:\Users\���ܲ�\AppData\Local\Temp\_11604~1\response.rsp
il2cpp.exe didn't catch exception: Unity.IL2CPP.Building.BuilderFailedException:

......
......

检查过在编辑器里能够正常运行,项目路径和打包路径都没有中文,但是上面报错的地方出现了乱码。

阅读全文 »

UE4官方的API文档不方便查阅,搜索很不方便。如果有chm格式的文档就可以快速搜索。

在UE4安装目录下有自带的html文档:

1
Engine\Documentation\Builds\CppAPI-HTML.tgz

解压后在en-US

首先尝试过html2chm、hugechm、easychm这几个软件直接进行转换,但是显示效果不行,而且总是报javascript错误,一直没法解决。

于是尝试直接从源代码生成html文档,然后编译压缩成chm格式的。

阅读全文 »