Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
446 views

Why did non-von Neumann languages never became mainstream? [closed]

Why did non-von Neumann languages never became mainstream?
8
votes
5answers
1k views

Turing Model Vs Von Neuman model

First some background (based on my understanding).. The Von-Neumann architecture describes the stored-program computer where instructions and data are stored in memory and the machine works by ...
6
votes
4answers
189 views

What would the assembly language equivalents of the operations on the original Turing machine be?

If you take the original Turing machine definition as follows: ...an infinite memory capacity obtained in the form of an infinite tape marked out into squares, on each of which a symbol ...
5
votes
3answers
459 views

Some doubts regarding diagram of Von Neumann Arcitechture

Well I cant understand the above diagram of Von Neumann architecture [Cited from wikipedia] and not even sure whether it is correct. Some obvious doubts that I have - How can ALU communicate with ...
5
votes
2answers
331 views

Types of computers

I have read somewhere recently something related to the kind of computers. The reading was related to Lisp and Emacs that fit into an "architectural" model more like a Turing Machine. In the other ...
3
votes
2answers
65 views

Use cases for self-modifying code?

On a Von Neumann architecture, program and data are both stored in memory, so a program can modify itself. Is this useful for a programmer? Could you give some examples?
2
votes
5answers
318 views

Are there any current non-Harvard architecture microcontrollers?

I have used and like the Atmel ATMEGA and ATTINY series microcontrollers, and think them quite good. One thing I am not terribly fond of though is the fact that they (and Microchip PIC uC family also) ...
1
vote
2answers
254 views

von-Neumann machines and Lambdas

Brian's premise in his argument to the question "Are side effects a good thing?" is interesting: computers are von-Neumann machines that are designed to work well with effects (rather than being ...
0
votes
0answers
29 views

How do i perform mean filtering on 2D arrays in java

I'm a novice java coder and need help with using the von Neumann neighbourhood of radius 1 to perform a mean filtering on 2D arrays. start by creating a 300 by 300 array of random double values, then ...
0
votes
0answers
200 views

How to add two array's of numbers together using the IAS instruction set?

I have to write a program using the IAS instruction set that will loop through two arrays and add each element of the one to the other and store the result in a thrid array. So for example I have to ...
0
votes
1answer
131 views

introduction to CS - stored-program concept - can't understand concept

I really do tried to understand the Von Neumann architecture, but there is one thing I can't understand, how can the user know the number in the computer's memory if this command or if it is a data ? ...