Cita:
- Build circuits using a variety of components from different manufacturers, like microcontrollers, memory, and logic gates.
- Write code in a compact and powerful assembly language where every instruction can be conditionally executed.
- Read the included manual, which includes over 30 pages of original datasheets, reference guides, and technical diagrams.
- Get to know the colorful cast of characters at your new employer, located in the electronics capital of the world.
- Get creative! Build your own games and devices in the sandbox.
- Engineering is hard! Take a break and play a brand-new twist on solitaire.
Cita:What you learn
LOGIC GATES
Logic gates are the fundamental building blocks of computation. Given only a nand gate you create the rest.
COMPONENTS
Building on logic gates and introducing memory, more complex constructions are possible.
ARCHITECTURE
Assemble your components into real computers. Turing complete computers are the gold standard, Turing complete meaning a computer that is capable of computing the same algorithms as a Turing machine.
ASSEMBLY
Computers are programmed with binary codes. Create assembly instructions to simplify this and solve programming puzzles on your own hardware.
Public Sub Menu81_Click() 'borrar todos los espacios >1
Dim s As String
s = File.Name(editorTexto.Tag[sPath])
s = CustomTrim(s)
End
Public Function CustomTrim(s As String) As String
Dim sOut As String
sOut = Trim(RTrim(s))
While InStr(sOut, " ")
sOut = Replace(sOut, " ", " ")
Wend
Return sOut
End