/******************************************************************************
 *
 * Project:	Main Emulator Javascript Class
 *
 * File:	ngbasic-0.2.devel.js
 *
 * Author:	silversoft solutions
 *    URL:  http://ngbasic.com/ngbasic
 *
 * Created:	Mon Nov 28 09:05:32 CET 2005
 *
 * TODO:
 *	- Fix char_index-stuff (to correctly wrap to the next line)
 *
 * History:
 * - Added support for excanvas library for cross browser rendering
 * - ported and tweaked to Internet Explorer
 * - ported and tweaked event loop to run on google chrome
 * 
 ******************************************************************************
 * (c) Copyright Silversoft Solutions, 2005-2009          All Rights Reserved *
 ******************************************************************************
 $Id$
 */

function loadlib(libraryName) {
// inserting via DOM fails in Safari 2.0, so brute force approach
document.write('<script type="text/javascript" src="'+libraryName+'"></script>');
}

// This refers to the interpreter so that the keyHandler( ) can call
// the right object's methods.
var ngBasic = 0;

loadlib('./core/ngbasic-0.2-libraries.js');
loadlib('./core/ngbasic-0.2-vfs.js');
loadlib('./core/ngbasic-0.2-constants.js');
loadlib('./core/ngbasic-0.2-keyhandler.js');

loadlib('./core/ngbasic-0.2-kernel.js');


 
	 

