Questions tagged [oam]

One Address Machine (OAM) is a simple virtual CPU architecture: intended to teach the fundamentals of an instruction set, memory, addressing, high level programming, compilation assembly, etc.. The web based compiler and assembler/emulator is called OAMulator and allows programs written in a special programming language (OAMPL) to be compiled into OAM Assembly and to interpret/execute OAM Assembly code (produced by the compiler or written directly).

The OAMulator is a Web-based resource to support the teaching of instruction set architecture, assembly languages, memory, addressing, high-level programming, and compilation.

The tool is based on a simple, virtual CPU architecture, called the One Address Machine.

A compiler allows us to take programs written in a special programming language, called OAMPL, and transform them into OAM assembly.

An OAM assembler/emulator interprets and executes OAM assembly code produced by the compiler or written directly by students.

The OAMulator is targeted at non-CS students who take introductory courses in information technology or information systems. Such students are normally exposed to concepts of computer hardware and software, but it is difficult for them to make the connection between the two.

The OAM emulator resource supports the teaching of the following concepts:

  1. Von Neumann architecture
  2. registers
  3. ALU and controller
  4. CPU stages of execution
  5. instruction set architecture
  6. assembly languages
  7. memory and addressing

The OAMPL compiler resource supports the teaching of the following concepts:

  1. high-level languages
  2. compilers
  3. I/O, assignment, and control statements
  4. variable reference resolution
  5. expressions and parsing
  6. optimization

src: http://informatics.indiana.edu/fil/Papers/oamulator.pdf

33 questions
0
votes
1 answer

Effect on Session on UserName change?

I am using a OAM for access Management in my Application which is a WCP 11 PS4 A Application over Weblogic. One of the functionality in the application is allow the user to update/Change UserName within a logged In Session. My Concern is when User…
Nishant
  • 222
  • 6
  • 21
0
votes
1 answer

OAM assembly code error

I cannot seem to calculate regular pay in this code. It simply computes the rate of overtime hours not the complete pay including regular pay. Here is the link to the OAMulator compiler. SET 40 #put the value 40 into the accumulator STA 50 …
user2548833
  • 383
  • 1
  • 4
  • 7
0
votes
1 answer

Python to OAM Assembly Language

I am trying to convert my python program into assembly language yet I am unsure how. Here is the python program: numberofscores=float(input("Please enter the number of test scores to be entered:")) sumofscores = 0 count = 1 while count <=…
user2548833
  • 383
  • 1
  • 4
  • 7
1 2
3