~ubuntu-branches/ubuntu/karmic/e-uae/karmic

« back to all changes in this revision

Viewing changes to src/filesys.sh

  • Committer: Bazaar Package Importer
  • Author(s): Stephan Suerken
  • Date: 2008-07-05 14:02:02 UTC
  • Revision ID: james.westby@ubuntu.com-20080705140202-u5aagnhtg31pmjc3
Tags: upstream-0.8.29-WIP4
ImportĀ upstreamĀ versionĀ 0.8.29-WIP4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /bin/sh
 
2
# Script to convert an Amiga executable named filesys into a series of
 
3
# dw(...) statements.
 
4
# This assumes that the first four lines only contain hunk information.
 
5
# That is what you get if you assemble/link with a68k/blink
 
6
od -v -t xC -w8 filesys |tail -n +5 | sed -e "s,^.......,,"  \
 
7
  -e "s,[0123456789abcdefABCDEF][0123456789abcdefABCDEF],db(0x&);,g"