Skip to content

Instantly share code, notes, and snippets.

@blondie7575
Created December 9, 2012 22:58
Show Gist options
  • Save blondie7575/4247372 to your computer and use it in GitHub Desktop.
Save blondie7575/4247372 to your computer and use it in GitHub Desktop.
define(EnableVRAMWrite, `
sbi PORTB,vramOE
ldi accum,0xff
out DDRD,accum
')
define(DisableVRAMWrite, `
clr accum
out DDRD,accum
out PORTD,accum
cbi PORTB,vramOE
')
define(PulseVRAMWrite, `
cbi PORTB,vramWrite
sbi PORTB,vramWrite
')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment