beebasm

changeset 2:0fcf7047cab9 v0.02

BeebASM v0.02 - first released Dec 20 2007 13:41:35
author Samwise <samwise@bagshot-row.org>
date Sun May 02 11:49:21 2010 +0100
parents 9d9b298084e3
children fb122da1d355
files about.txt beebasm.exe demo.asm demo.ssd src/Makefile.inc src/asmexception.cpp src/main.cpp
diffstat 7 files changed, 8 insertions(+), 6 deletions(-) [+]
line diff
     1.1 --- a/about.txt	Sat May 01 20:52:47 2010 +0100
     1.2 +++ b/about.txt	Sun May 02 11:49:21 2010 +0100
     1.3 @@ -471,6 +471,8 @@
     1.4  
     1.5  9. VERSION HISTORY
     1.6  
     1.7 +20/12/2007  0.02  Fixed small bug which withheld filename and line number
     1.8 +                  display in error messages.
     1.9  16/12/2007  0.01  First released version.
    1.10  
    1.11  
     2.1 Binary file beebasm.exe has changed
     3.1 --- a/demo.asm	Sat May 01 20:52:47 2010 +0100
     3.2 +++ b/demo.asm	Sun May 02 11:49:21 2010 +0100
     3.3 @@ -26,7 +26,6 @@
     3.4  \ *
     3.5  \ ******************************************************************
     3.6  
     3.7 -
     3.8  \\ Define globals
     3.9  
    3.10  numdots			= 160
     4.1 Binary file demo.ssd has changed
     5.1 --- a/src/Makefile.inc	Sat May 01 20:52:47 2010 +0100
     5.2 +++ b/src/Makefile.inc	Sun May 02 11:49:21 2010 +0100
     5.3 @@ -57,9 +57,9 @@
     5.4  CC				:=		C:/MinGW/bin/gcc
     5.5  CXX				:=		C:/MinGW/bin/gcc
     5.6  LD				:=		C:/MinGW/bin/gcc
     5.7 -MKDIR			:=		C:/Utilities/mkdir -p
     5.8 -RM				:=		C:/Utilities/rm -f
     5.9 -ECHO			:=		@@C:/Utilities/echo
    5.10 +MKDIR			:=		C:/Cygwin/bin/mkdir -p
    5.11 +RM				:=		C:/Cygwin/bin/rm -f
    5.12 +ECHO			:=		@@C:/Cygwin/bin/echo -e
    5.13  
    5.14  
    5.15  # Declare default number of CPUs
     6.1 --- a/src/asmexception.cpp	Sat May 01 20:52:47 2010 +0100
     6.2 +++ b/src/asmexception.cpp	Sun May 02 11:49:21 2010 +0100
     6.3 @@ -42,7 +42,7 @@
     6.4  	assert( m_pFilename != NULL );
     6.5  	assert( m_lineNumber != 0 );
     6.6  
     6.7 -//	cerr << m_pFilename << ":" << m_lineNumber << ": error: ";
     6.8 +	cerr << m_pFilename << ":" << m_lineNumber << ": error: ";
     6.9  	cerr << Message() << endl << endl;
    6.10  	cerr << m_line << endl;
    6.11  	cerr << string( m_column, ' ' ) << "^" << endl;
     7.1 --- a/src/main.cpp	Sat May 01 20:52:47 2010 +0100
     7.2 +++ b/src/main.cpp	Sun May 02 11:49:21 2010 +0100
     7.3 @@ -23,7 +23,7 @@
     7.4  using namespace std;
     7.5  
     7.6  
     7.7 -#define VERSION "0.01"
     7.8 +#define VERSION "0.02"
     7.9  
    7.10  
    7.11  /*************************************************************************************************/
    7.12 @@ -94,6 +94,7 @@
    7.13  					cout << " -boot <file>   Specify a filename to be run by !BOOT on a new disc image" << endl;
    7.14  					cout << " -v             Verbose output" << endl;
    7.15  					cout << " --help         See this help again" << endl;
    7.16 +					return EXIT_SUCCESS;
    7.17  				}
    7.18  				else
    7.19  				{