This page (revision-9) was last changed on 03-Feb-2023 15:21 by Stefan Haubenthal 

This page was created on 12-Mar-2010 13:06 by Carsten Strotmann

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
9 03-Feb-2023 15:21 4 KB Stefan Haubenthal to previous
8 03-Mar-2013 15:36 4 KB Carsten Strotmann to previous | to last
7 03-Mar-2013 15:36 4 KB Carsten Strotmann to previous | to last
6 01-Jan-2011 17:04 4 KB Carsten Strotmann to previous | to last
5 27-Dec-2010 10:09 4 KB Carsten Strotmann to previous | to last
4 12-Mar-2010 13:09 4 KB Carsten Strotmann to previous | to last
3 12-Mar-2010 13:08 3 KB Carsten Strotmann to previous | to last
2 12-Mar-2010 13:07 4 KB Carsten Strotmann to previous | to last
1 12-Mar-2010 13:06 4 KB Carsten Strotmann to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 5 added one line
!! Disks
At line 7 added 15 lines
* [BiboAssembler/biboass.atr]
* [BiboAssembler/biboasm1.atr]
* [BiboAssembler/biboasm2.atr]
* [BiboAssembler/biboasm3.atr]
* [BiboAssembler/biboass_build003.atr]
!! Source
* [BiboAssembler/bibo_src.zip]
!! Handbook
* [BiboAssembler Handbuch (german)|BiboAssembler/biboass.pdf]
* [BiboAssembler Handbuch (german, HTML)|http://www.hintermueller.de/biboassembler]
\\
At line 22 changed one line
The BiboAssembler Editor is a line Editor with Line-Number, similar to Atari Basic. It can be used like the Atari Basic Editor. Inverse Characters cannot be used except when eclosed in double-quotes. The ASCII Character with Value Zero (the heart in the ATASCI Font) cannot be used. If you need to specify this Char you have to write <p /><code> .HX 00 ; Equals ASCII Value Zero </code>.
The BiboAssembler Editor is a line Editor with Line-Number, similar to Atari Basic. It can be used like the Atari Basic Editor. Inverse Characters cannot be used except when eclosed in double-quotes. The ASCII Character with Value Zero (the heart in the ATASCI Font) cannot be used. If you need to specify this Char you have to write
{{{ .HX 00 ; Equals ASCII Value Zero }}}
At line 28 changed one line
<code>INC steps, first linenumber</code>
{{{INC steps, first linenumber}}}
At line 31 changed one line
<code>INC 10, 1000</code>
{{{INC 10, 1000}}}
At line 35 changed one line
<code>NUM steps, first linenumber</code>
{{{NUM steps, first linenumber}}}
At line 38 changed one line
<code>NUM 10, 1000</code>
{{{NUM 10, 1000}}}
At line 46 changed one line
Syntax: <code>DEL first line, last line</code>
Syntax: {{{DEL first line, last line}}}
At line 48 changed one line
Example: <code>DEL 1000,1100</code>
Example: {{{DEL 1000,1100}}}
At line 59 changed one line
| A | | B | | C | | D | | E |
|| A || || B || || C || || D || || E ||
At line 73 changed one line
<code>1000 -</code>
{{{1000 -}}}
At line 84 changed one line
Syntax: <code>LIS first line, last line</code>
Syntax: {{{LIS first line, last line}}}
At line 86 changed one line
Example: <code>LIS 1000,2000</code>
Example: {{{LIS 1000,2000}}}
At line 92 changed one line
<code>LIS 1000,</code> will list from line 1000 to the End.
{{{LIS 1000,}}} will list from line 1000 to the End.
At line 94 changed one line
<code>LIS START</code> will list from Label "START" down.
{{{LIS START}}} will list from Label "START" down.
At line 100 changed one line
Syntax: <code>FIN string</code>
Syntax: {{{FIN string}}}
At line 102 changed one line
Example: <code>FIN LDA</code> will list all occurances of LDA in the sourcecode.
Example: {{{FIN LDA}}} will list all occurrences of LDA in the sourcecode.
At line 106 changed one line
Syntax: <code>REP "string1"string2"</code>
Syntax: {{{REP "string1"string2"}}}
At line 108 changed one line
Example: <code>REP "LDA"LDX"</code> will replace all occurances of "LDA" with "LDX" in the Sourcecode.
Example: {{{REP "LDA"LDX"}}} will replace all occurances of "LDA" with "LDX" in the Sourcecode.
At line 130 added 5 lines
-----
Martin Metz | 25.01.2009 at 01:04 PM
biboass_build002.atr freshly build from source and installed on XDOS 2.42N. Runs without issues on XDOS 2.42N Has the new pseudo opcode .HS included (SynAss compatible). Build 002 fixes a bug in the "." command of the monitor that is present in build 001 only.