您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

Makefile.pcbios 370B

123456789101112131415
  1. # -*- makefile -*- : Force emacs to use Makefile mode
  2. # Place .textdata in negative 2GB of address space
  3. #
  4. CFLAGS += -mcmodel=kernel
  5. LDFLAGS += --section-start=.textdata=0xffffffffeb000000
  6. # Assembly code does not respect a red zone.
  7. #
  8. CFLAGS += -mno-red-zone
  9. # Include generic BIOS Makefile
  10. #
  11. MAKEDEPS += arch/x86/Makefile.pcbios
  12. include arch/x86/Makefile.pcbios