📄 makefile
字号:
# Use normal make for this Makefile## Makefile for:# coff2noff -- converts a normal MIPS executable into a Nachos executable# disassemble -- disassembles a normal MIPS executable ## Copyright (c) 1992 The Regents of the University of California.# All rights reserved. See copyright.h for copyright notice and limitation # of liability and disclaimer of warranty provisions.# If the host is big endian (SPARC, SNAKE, etc):# change to (disassemble and coff2flat don't support big endian yet):# CFLAGS= -I./ -I../threads -DHOST_IS_BIG_ENDIAN# all: coff2noffCC=gccCFLAGS=-I./LD=gccall: coff2noff# converts a COFF file to Nachos object formatcoff2noff:coff2noff.o $(LD) -o coff2noff coff2noff.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -