<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://www.ayerslabs.com/dokuwiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://www.ayerslabs.com/dokuwiki/feed.php">
        <title>AyersLabs</title>
        <description></description>
        <link>http://www.ayerslabs.com/dokuwiki/</link>
        <image rdf:resource="http://www.ayerslabs.com/dokuwiki/lib/images/favicon.ico" />
       <dc:date>2012-05-20T09:46:12-04:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://www.ayerslabs.com/dokuwiki/doku.php?id=stack_tutorial_section&amp;rev=1319947760&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.ayerslabs.com/dokuwiki/doku.php?id=int16&amp;rev=1317004193&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.ayerslabs.com/dokuwiki/doku.php?id=assembly_language&amp;rev=1316998988&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.ayerslabs.com/dokuwiki/doku.php?id=virtual_machine2&amp;rev=1302350067&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.ayerslabs.com/dokuwiki/doku.php?id=dev-wiki&amp;rev=1302349490&amp;do=diff"/>
                <rdf:li rdf:resource="http://www.ayerslabs.com/dokuwiki/doku.php?id=overview_of_high_level&amp;rev=1301804687&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://www.ayerslabs.com/dokuwiki/lib/images/favicon.ico">
        <title>AyersLabs</title>
        <link>http://www.ayerslabs.com/dokuwiki/</link>
        <url>http://www.ayerslabs.com/dokuwiki/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="http://www.ayerslabs.com/dokuwiki/doku.php?id=stack_tutorial_section&amp;rev=1319947760&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-10-30T00:09:20-04:00</dc:date>
        <dc:creator>alexayers</dc:creator>
        <title>stack_tutorial_section</title>
        <link>http://www.ayerslabs.com/dokuwiki/doku.php?id=stack_tutorial_section&amp;rev=1319947760&amp;do=diff</link>
        <description>Stacks are LIFO, the last piece of data pushed onto the stack is the first piece of data popped off the stack.

Example

push 5
push 3
push 10
pop ax    // ax = 10
pop ax    // ax = 3
pop ax    // ax = 5

Passing Parameters

The stack is especially useful for passing data to subroutines.</description>
    </item>
    <item rdf:about="http://www.ayerslabs.com/dokuwiki/doku.php?id=int16&amp;rev=1317004193&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-09-25T22:29:53-04:00</dc:date>
        <dc:creator>alexayers</dc:creator>
        <title>int16</title>
        <link>http://www.ayerslabs.com/dokuwiki/doku.php?id=int16&amp;rev=1317004193&amp;do=diff</link>
        <description>Interrupt 16 provides simple math functionality. This interrupt should be used when you need to perform fast math operations. 

Generate a random number between two numbers

mov ax &lt;min&gt;

mov bx &lt;max&gt;

mov ix 0

int 16


Returns a random number in AX register.</description>
    </item>
    <item rdf:about="http://www.ayerslabs.com/dokuwiki/doku.php?id=assembly_language&amp;rev=1316998988&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-09-25T21:03:08-04:00</dc:date>
        <dc:creator>alexayers</dc:creator>
        <title>assembly_language - [Macros] </title>
        <link>http://www.ayerslabs.com/dokuwiki/doku.php?id=assembly_language&amp;rev=1316998988&amp;do=diff</link>
        <description>vasm,
	programming

Before discussing Virtual Machine programming it should be noted that you should be programming in {high-level}, and not in the assembly language unless you are trying optimize code to be faster than the code the compiler will generate.</description>
    </item>
    <item rdf:about="http://www.ayerslabs.com/dokuwiki/doku.php?id=virtual_machine2&amp;rev=1302350067&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-04-09T07:54:27-04:00</dc:date>
        <dc:creator>alexayers</dc:creator>
        <title>virtual_machine2</title>
        <link>http://www.ayerslabs.com/dokuwiki/doku.php?id=virtual_machine2&amp;rev=1302350067&amp;do=diff</link>
        <description>Technical Overview

XVM2 is a register based virtual machine written in C++ designed for both speed and portability. XVM2 executes a bytecode language generated by the VASM assembler which allows a program compiled on any platform to run on any platform where XVM2 has been ported. Currently XVM2 is being targeted for Windows, OSX, and Linux.</description>
    </item>
    <item rdf:about="http://www.ayerslabs.com/dokuwiki/doku.php?id=dev-wiki&amp;rev=1302349490&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-04-09T07:44:50-04:00</dc:date>
        <dc:creator>alexayers</dc:creator>
        <title>dev-wiki</title>
        <link>http://www.ayerslabs.com/dokuwiki/doku.php?id=dev-wiki&amp;rev=1302349490&amp;do=diff</link>
        <description>Three strategic initiatives currently under development.

A high-level strongly typed language.

VASM - low-level unified machine language for XVM2.

XVM2 - Multi-platform runtime environment</description>
    </item>
    <item rdf:about="http://www.ayerslabs.com/dokuwiki/doku.php?id=overview_of_high_level&amp;rev=1301804687&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2011-04-03T00:24:47-04:00</dc:date>
        <dc:creator>alexayers</dc:creator>
        <title>overview_of_high_level - [Variables] </title>
        <link>http://www.ayerslabs.com/dokuwiki/doku.php?id=overview_of_high_level&amp;rev=1301804687&amp;do=diff</link>
        <description>{high-level},
	programming


The {high-level} programming language was designed with three goals in mind: make it easy to call C++ functions from {high-level}, and make it easy to call {high-level}functions from C++, and to develop a language designed from the ground up to be part of the {engine name}. All non-engine code is written in {high-level}.</description>
    </item>
</rdf:RDF>

