-
-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa54eed
commit 36ec4e7
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,8 @@ int isalnum(int c); | |
|
||
int isalpha(int c); | ||
|
||
int isblank(int c); | ||
|
||
int iscntrl(int c); | ||
|
||
int isdigit(int c); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
assume adl=1 | ||
|
||
section .text | ||
public _isblank | ||
_isblank: | ||
pop de | ||
ex (sp),hl | ||
push de | ||
ld a,l | ||
cp a,32 | ||
ret z | ||
cp a,9 | ||
ret z | ||
or a,a | ||
sbc hl,hl | ||
ret |