📄 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):CC=gcc# Sparc/Solaris# CFLAGS= -I./ -I../threads -DHOST_IS_BIG_ENDIAN# LinuxCFLAGS=-I./ -I../threads -gLD=gccall: coff2noff# converts a COFF file to Nachos object formatcoff2noff: coff2noff.o $(LD) coff2noff.o -o coff2noff# converts a COFF file to a flat address space (for Nachos version 2)coff2flat: coff2flat.o $(LD) coff2flat.o -o coff2flat# dis-assembles a COFF filedisassemble: out.o opstrings.o $(LD) out.o opstrings.o -o disassemble
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -