From 99f0cf9f99baa234a7f6cfc73fc25e797c87c6ad Mon Sep 17 00:00:00 2001 From: Michaelangel007 Date: Wed, 27 Jan 2016 13:20:23 -0800 Subject: [PATCH] Fix bad ORG directives --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 41f8f04..7806b85 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ #Apple ]\[ //e HGR Font 6502 Assembly Language Tutorial -Revision: 54, Jan 27, 2016. +Revision: 55, Jan 27, 2016. # Table of Contents @@ -1092,11 +1092,11 @@ Here is what our render glyph code looks like so far: TmpHi = $F6 ; High byte Working pointer to screen byte Font = $6000 - .ORG $310 + ORG $310 DrawChar: JMP _DrawChar1 - .ORG $34C + ORG $34C _DrawChar1 LDX TmpHi STX TopHi @@ -1603,7 +1603,7 @@ Listing Demo 3b: Listing 8: ```assembly - ORG $0303 + ORG $0301 ; FUNC: DrawHexByte( c ) = $0301 ; PARAM: A = byte to print in hex 0301: DrawHexByte