You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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