Volunteer work for Apple and the Graphing Calculator
Anyone who was an Apple die-hard in the mid-90s loved the graphing calculator—it allowed you to rub your Wintel friend's noses in the sheer processing power of your new Risc PPC Mac.
So reading the story of it's very Apple development process was really a joy :) It should definately be included in any future edition of Insanely Great. To get you interested, here is the last line and postscript from the story: We wanted to release a Windows version as part of Windows 98, but sadly, Microsoft has effective building security. Also worth a look is the gallery of cool graphs at pacifict.com. 03:36 PM, 22 Dec 2004 by Mark Aufflick Permalink | Short Link | Comments (1) Yet Another Apple Emulator - Patches
While geeking out on Apple ][ assembler programming this weekend (last weeekend it was Objective-C), I discovered there aren't many Apple // emulators for Linux.
There are tons of great free and shareware emulators for my MacOS X Laptop, but I want to use my beefy Linux workstation... I can SURELY get better than twice the speed of an original 6502! I found YAE — Yet Another Apple Emulator, but I had to patch the source a little to make it compile on a modern gcc. I'll package them better soon (and mail the maintainer), but for now my POST ./configure patches are below. Also of note, the speed limiter (to the authentic 1.04MHz) is implemented in speed.c if you want to increase the speed or disable it. Since I just want to edit and assemble, the timing shouldn't matter for me and I now have a WAY fast emulated Apple //e ;) --- iou.h 1998-11-26 19:24:56.000000000 +1100 +++ ../yae-0.6-patched/iou.h 2004-11-21 23:54:20.000000000 +1100 @@ -143,5 +143,7 @@ unsigned long GetIOUSoftSwitch(void); BYTE AppleIORead( ADDR ); void AppleIOWrite( ADDR, BYTE ); +void printer_byte( BYTE ); +void init_printstream( void ); #endif /* _IOU_H_ */ --- iou.c 1998-11-29 23:27:52.000000000 +1100
+++ ../yae-0.6-patched/iou.c 2004-11-21 23:53:26.000000000 +1100
@@ -547,7 +547,12 @@
return data;
}
-FILE *printstream=stdout;
+FILE *printstream;
+void init_printstream (void)
+{
+ printstream = stdout;
+}
+
void printer_byte(BYTE data)
{
data &= 0x7f; /* Remove hi-bit */
--- main.c 1998-11-29 20:45:20.000000000 +1100 +++ ../yae-0.6-patched/main.c 2004-11-21 23:53:53.000000000 +1100 @@ -73,6 +73,7 @@ setDefaultOptions(); ParseConfigFile(); processOptions(argc,argv); + init_printstream(); /* mount disks */ if (optind<argc) disk_name[6][0]=argv[optind++]; --- Makefile 2004-11-22 00:02:05.000000000 +1100 +++ ../yae-0.6-patched/Makefile 2004-11-22 00:00:49.000000000 +1100 @@ -15,7 +15,7 @@ X_CFLAGS= -I/usr/X11R6/include X_LIBS= -L/usr/X11R6/lib -X_EXTRA_LIBS= +X_EXTRA_LIBS= -lX11 -lXext X_PRE_LIBS= DEFS= -DSTDC_HEADERS=1 -DHAVE_FCNTL_H=1 -DHAVE_SYS_IOCTL_H=1 11:12 AM, 03 Dec 2004 by Mark Aufflick Permalink | Short Link | Comments (3) |
Archive
November 2011 October 2011 April 2011 March 2011 January 2011 November 2010 October 2010 September 2010 August 2010 July 2010 June 2010 May 2010 April 2010 March 2010 February 2010 January 2010 October 2009 September 2009 August 2009 July 2009 June 2009 May 2009 April 2009 February 2009 January 2009 December 2008 November 2008 October 2008 September 2008 August 2008 July 2008 June 2008 May 2008 March 2008 February 2008 January 2008 December 2007 November 2007 October 2007 September 2007 August 2007 July 2007 June 2007 May 2007 April 2007 March 2007 February 2007 January 2007 December 2006 November 2006 October 2006 September 2006 August 2006 July 2006 June 2006 May 2006 April 2006 March 2006 February 2006 January 2006 December 2005 November 2005 October 2005 September 2005 August 2005 July 2005 June 2005 May 2005 April 2005 March 2005 February 2005 January 2005 December 2004 November 2004 October 2004 September 2004 August 2004 July 2004 June 2004 May 2004 April 2004 March 2004 February 2004 January 2004 December 2003 November 2003 October 2003 September 2003 August 2003 Blog Categoriessoftware (39)..cocoa (21) ..heads up 'tunes (5) ..ruby (6) ..lisp (3) ..perl (4) ..openacs (1) mac (20) embedded (2) ..microprocessor (2) ..avr (1) electronics (3) design (1) photography (25) ..black and white (6) ..A day in Sydney (18) ..The Daily Shoot (6) food (2) Book Review (2) Notifications Request notifications
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||








Request notifications