⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makes

📁 m68k系列反汇编的C语言源码,供学习编译原理的同学使用。实用!
💻
字号:
#!/bin/sh#                 Author:  Christopher G. Phillips#              Copyright (C) 1994 All Rights Reserved##                              NOTICE## Permission to use, copy, modify, and distribute this software and# its documentation for any purpose and without fee is hereby granted# provided that the above copyright notice appear in all copies and# that both the copyright notice and this permission notice appear in# supporting documentation.## The author makes no representations about the suitability of this# software for any purpose.  This software is provided ``as is''# without express or implied warranty.MACDIR=.if [ $# -ne 1 ]then	echo Usage: $0 file.rf	exit 1fiif [ ! -f $1.out ]then	$MACDIR/rf $1.rf > $1.outfiif [ ! -f $1.b ]then	perl $MACDIR/makeb.pl < $1.out > $1.bfiif [ ! -f $1.n ]then	perl $MACDIR/maken.pl < $1.out > $1.nfiargs="-s 4 -sp -odd -a $MACDIR/mac.a -j $MACDIR/mac.j -b $1.b -n $1.n -030 -881"if [ -f $1.i ]then	args="$args -i $1.i"fiif [ -f $1.f ]then	args="$args -f $1.f"fiif [ -f $1.ns ]then	args="$args -ns $1.ns"fi$MACDIR/../m68kdis $args $1.rf 2> $1.rf.stderrperl $MACDIR/rftos.pl $1$MACDIR/../wierd $1.rf.s | moreexit 0# whybad.pl < d2 | worst.pl $1.n | more

⌨️ 快捷键说明

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