IBM Assembler Question:
Download Questions PDF

What is base register?

IBM Assembler Interview Question
IBM Assembler Interview Question

Answer:

A base register is any general purpose register chosen by
programmer. It is assigned at the beginning of the program
as part of housekeeping with the USING assembler keyword,
and it's purpose is to maintain addressibility within a
page (4k) of code or data.

Download IBM Assembler Interview Questions And Answers PDF

Previous QuestionNext Question
What is house keeping in assembler? And explain the following code

HELLOTSO START 0
* PRINT NOGEN
BEGIN SAVE (14,12)
LR 12,15
USING TYPE,12
ST 13,SAVE+4
LA 11,SAVE
ST 11,8(13)
LR 13,11
Why can only 256 bytes be moved from one address to another in a MVC?