reloc.inc

来自「FreeRTOS 是一个源码公开的免费的嵌入式实时操作系统」· INC 代码 · 共 31 行

INC
31
字号
-rsc
-x"C:\Program Files\Microchip\MPASM Suite\mpasmwin.exe"
-X/o
-X/q

// Alternatives:
// -xC:\progra~1\microc~1\mpasms~1\mpasmwin.exe    // short format (MSDOS)
// -xC:\progra~1\mplab\mpasm.exe                   // old mpasm.exe

// These CC8E command line options starts MPASM from inside the
// compiler to generate an object module for linking by MPLINK.
// The path to the assembler (mpasmwin) may have to be changed if
// MPLAB/MPASM is installed in another directory.

// This file is included by using the option: +reloc.inc
// In MPLAB, this is done by selecting menu item
// "Project->Build Options->Project" or right-clicking on
// the project name and then "Build Options...".  Then click on the
// "CC8E C Compiler" TAB. Options can be entered as a string in the
// "Additional Command-Line Options" field.

// -rsc[=<file.lkr>]  // generate relocatable assembly + full script file
// -r2[<file.lkr>]    // generate relocatable assembly + partial script
// -r                 // generate relocatable assembly

// Options starting with -X<op> are forwarded to the assembler.
// -X/o  // generate object module for linking
// -X/q  // silent operation of MPASM

// NOTE: options -rsc (-r2, -r) and -Xo should NOT be used for single modules

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?