compudanzas/src/computer_architecture.gmo

28 lines
852 B
Plaintext
Raw Permalink Normal View History

2021-06-16 23:07:26 +00:00
# computer architecture
In computer engineering, computer architecture is a set of rules and methods that describe the functionality, organization, and implementation of computer systems. (from wikipedia)
2021-06-19 22:46:12 +00:00
# common architectures
## harvard architecture
there is a memory for instructions and another one for data.
2021-07-13 02:25:23 +00:00
{danza papier} is a simple model that can be understood as an example of this architecture. (in spanish)
{computadora de papel} is the same model but in paper. (in spanish)
2021-07-07 21:13:44 +00:00
2021-06-19 22:46:12 +00:00
## von neuman architecture
the same memory stores instructions and data.
it is also known as princeton architecture.
the {little person computer} is a model of this architecture.
# compudanzas implementations
2021-06-16 23:07:26 +00:00
=> ./danza_papier.gmi {danza papier}
2021-06-19 22:46:12 +00:00
=> ./the_beans_computer.gmi {the beans computer}
2021-06-16 23:07:26 +00:00
=> ./propuesta_el_computador.gmi {propuesta el computador}