【发布时间】:2014-04-10 09:19:31
【问题描述】:
我问了一个相关的问题here。现在我有更基本的问题,我的意思是我原来的问题被改变了,所以我决定问一个新问题。我在链接器脚本和生成文件方面没有太多经验。从linux读取以下四个文件setup.ld、Makefile、bioscall.S和pmjump.S,我认为有可能(工作)是对还是错?
.code16
.section ".inittext","ax"
在pmjump.S:
.code32
.section ".text32","ax"
在setup.ld:
.inittext : { *(.inittext) }
和
.text32 : { *(.text32) }
【问题讨论】:
标签: linux assembly linker makefile 16-bit