Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Logotype #31

Merged
merged 3 commits into from
Jul 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions itema.asm
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ initialize:

lda #$06 // Set the background color
sta $d021
lda #$00 // Set the background color
sta $d020

lda #%11000011 // Enable sprites
Expand Down Expand Up @@ -77,17 +78,17 @@ initialize:
sta $d010

// Position both sprites overlapping
lda #$18
lda #$02
sta $d00c
sta $d00e
lda #$d5
lda #$d7
sta $d00d
sta $d00f

// Set colors
lda #$01
lda #$0f
sta $d02d
lda #$02
lda #$0a
sta $d02e


Expand Down
Loading