/***********************************************************************
 *
 *   NAME
 *      Copyright -- display Hashnique copyright notice on screen
 *
 *   SYNOPSIS
 *      Copyright( rastport );
 *
 *      struct RastPort *rastport;
 *
 *   copyright (c) 1987 Martin D. Hash
 *
 *	******************************
 *	   RETAIN THIS FILE AS IS
 *      ******************************
 *
 *   DESCRIPTION
 *      An Image is used to create the copyright notice.
 *
 *   LAST EDITED
 *	Martin Hash			20 Apr 1987
 *
 *   EDIT HISTORY
 *      31 Dec 1986  MH  Created.
 *
 **********************************************************************/

#include <exec/types.h>
#include <intuition/intuition.h>

/* FILE VARIABLES */

static UWORD copyright_data[] = {
   0x3840, 0x0800, 0x0000,
   0x4440, 0x0808, 0x0000,
   0x9263, 0x2CC1, 0xA900,
   0xA255, 0x4AAA, 0xAA80,
   0x9255, 0x2AAA, 0xAB80,
   0x4453, 0x4AA9, 0x9200,
   0x3800, 0x0000, 0x8100,
   0x0000, 0x0000, 0x4000
};

static struct Image copyright_image = {
   0, 1,
   48, 8, 1,
   copyright_data,
   0x2, 0x0,
   NULL
};

/* FUNCTION */

void Copyright( rastport )

struct RastPort *rastport;
{
   DrawImage( rastport, &copyright_image, 300, 220 );
}
   

