Thanks to LOAM, A-LOAM, and LIO-SAM code authors. The major codes in this repository are borrowed from their efforts. 代码:https://github.com/gisbi-kim/SC-A-LOAM 编译:点云PCL 本文仅做学术分享,如有侵权,请联系删除。…
在NASM中,声明一个段: section a alignb vstartc a 表示段名 b 表示对齐的字节数 c 表示段内汇编地址的开始点
align和vstart都是可选的,当然也可以用segment声明
section默认情况下是4字节对齐的,align用于修改默认值 如图,因为data1前面没有内容,所以加不加align都是一样的…