Renamed 'UnBlockProcess' to 'UnblockProcess' and 'UnFreezeProcess' to 'UnfreezeProcess' to matchall 3rd party docs.

git-svn-id: svn://svn.cc65.org/cc65/trunk@5504 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc
2012-02-09 07:37:08 +00:00
parent 129d3bf872
commit 2a0fd9bda0
5 changed files with 19 additions and 19 deletions

View File

@@ -9,9 +9,9 @@ InitProcesses = $c103
RestartProcess = $c106
EnableProcess = $c109
BlockProcess = $c10c
UnBlockProcess = $c10f
UnblockProcess = $c10f
FreezeProcess = $c112
UnFreezeProcess = $c115
UnfreezeProcess = $c115
HorizontalLine = $c118
InvertLine = $c11b
RecoverLine = $c11e

View File

@@ -6,10 +6,10 @@
; void InitProcesses (char number, struct process* proctab);
; (rest)
; void BlockProcess (char number);
; void UnBlockProcess (char number);
; void UnblockProcess (char number);
.export _BlockProcess
.export _UnBlockProcess
.export _UnblockProcess
.include "jumptab.inc"
@@ -17,6 +17,6 @@ _BlockProcess:
tax
jmp BlockProcess
_UnBlockProcess:
_UnblockProcess:
tax
jmp UnBlockProcess
jmp UnblockProcess

View File

@@ -4,10 +4,10 @@
; 27.10.99
; void FreezeProcess (char number);
; void UnFreezeProcess (char number);
; void UnfreezeProcess (char number);
.export _FreezeProcess
.export _UnFreezeProcess
.export _UnfreezeProcess
.include "jumptab.inc"
@@ -15,6 +15,6 @@ _FreezeProcess:
tax
jmp FreezeProcess
_UnFreezeProcess:
_UnfreezeProcess:
tax
jmp UnFreezeProcess
jmp UnfreezeProcess