diff options
author | yenatch <yenatch@gmail.com> | 2018-06-24 19:54:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-24 19:54:03 -0400 |
commit | 0cbe04da44744073c4c164df970b1571b1fda1a6 (patch) | |
tree | 3af0a92f5f7dc10f32eed04d9daae52749fc33c2 /home/copy_name.asm | |
parent | 131875d3e37044ec995287af7c93decd86a0d659 (diff) | |
parent | 1d9a68dbdd0132035f1fc7b7ea8f7fdc24741507 (diff) |
Merge pull request #531 from mid-kid/master
Remove all address comments
Diffstat (limited to 'home/copy_name.asm')
-rw-r--r-- | home/copy_name.asm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/home/copy_name.asm b/home/copy_name.asm index 52bcc93e7..59c8cf6c8 100644 --- a/home/copy_name.asm +++ b/home/copy_name.asm @@ -1,8 +1,8 @@ -CopyName1:: ; 30d6 +CopyName1:: ; Copies the name from de to wStringBuffer2 ld hl, wStringBuffer2 -CopyName2:: ; 30d9 +CopyName2:: ; Copies the name from de to hl .loop ld a, [de] @@ -11,4 +11,3 @@ CopyName2:: ; 30d9 cp "@" jr nz, .loop ret -; 30e1 |