cse461-fishnet, version 3.0 This is the Fishnet distribution for cse461, Winter 2003. It includes the following files: README - this file fish.h - the header file for the fishnet library hello.c - sample source code for Fishnet development. The program sends "hi :)" packets to nodes in the Fishnet. x86/fishhead - the fishhead executable for x86 processors (Instructional machines) - run "./fishhead --help" for more info x86/libfish.a - the fishnet library for x86 processors (Instructional machines) arm/fishhead - the fishhead executable for arm processors (iPaqs) - run "./fishhead --help" for more info arm/libfish.a - the fishnet library for arm processors (iPaqs) Makefile - the makefile for your homework fishsrc/ - source files for libfish.a and fishhead. You may read this source if you want to understand how the fishnet API works. amphibian* - support for external applications. To compile homework 1 for x86 processors, put your code in file called hw1.c and type: make hw1 This will create an executable named "hw1-x86". To compile homework 1 for arm processors, put your code in file called hw1.c and type: make ARM=1 hw1 This will create an executable named "hw1-arm". Have fun!