Skip to content

Instantly share code, notes, and snippets.

@nimaid
Created August 22, 2023 01:42
Show Gist options
  • Save nimaid/2cc5e6e9b925a0b4101f5cc8f4ac0c2a to your computer and use it in GitHub Desktop.
Save nimaid/2cc5e6e9b925a0b4101f5cc8f4ac0c2a to your computer and use it in GitHub Desktop.
Minecraft "Redstone Pen" RLC Code - Transparent D Latch
# A simple transparent D latch
#
# U is enable
# R is data in
# Y is data out
Y=IF(U, R, Y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment