flag bit - Definition. Was ist flag bit
Diclib.com
Online-Wörterbuch

Was (wer) ist flag bit - definition

DATA STRUCTURE USED IN COMPUTER PROGRAMMING
Flag field; Flag (computing); Bit-field; Bitfield; Flag bit; Bitfields; Flag byte; Flag word

Bit field         
A bit field is a data structure that consists of one or more adjacent bits which have been allocated for specific purposes, so that any single bit or group of bits within the structure can be set or inspected. A bit field is most commonly used to represent integral types of known, fixed bit-width, such as single-bit Booleans.
bit field         
<data> Part of an item of data, storage location or message, identified as a certain number of contiguous bits starting at a certain bit position within the data. Bit position zero is usually the least significant bit. For example, in an ARM machine code instruction the four-bit field at bits 28 to 31 (the four most significant bits in the 32-bit word) is the "condition code". (2007-03-26)
Carry flag         
PROCESSOR FLAG INDICATING WHETHER UNSIGNED ARITHMETIC OVERFLOW HAS OCCURRED
Carry bit; Borrow flag
In computer processors the carry flag (usually indicated as the C flag) is a single bit in a system status register/flag register used to indicate when an arithmetic carry or borrow has been generated out of the most significant arithmetic logic unit (ALU) bit position. The carry flag enables numbers larger than a single ALU width to be added/subtracted by carrying (adding) a binary digit from a partial addition/subtraction to the least significant bit position of a more significant word.

Wikipedia

Bit field

A bit field is a data structure that consists of one or more adjacent bits which have been allocated for specific purposes, so that any single bit or group of bits within the structure can be set or inspected. A bit field is most commonly used to represent integral types of known, fixed bit-width, such as single-bit Booleans.

The meaning of the individual bits within the field is determined by the programmer; for example, the first bit in a bit field (located at the field's base address) is sometimes used to determine the state of a particular attribute associated with the bit field.

Within CPUs and other logic devices, collections of bit fields called flags are commonly used to control or to indicate the outcome of particular operations. Processors have a status register that is composed of flags. For example if the result of an addition cannot be represented in the destination an arithmetic overflow is set. The flags can be used to decide subsequent operations, such as conditional jump instructions. For example, a JE ... (Jump if Equal) instruction in the x86 assembly language will result in a jump if the Z (zero) flag was set by some previous operation.

A bit field is distinguished from a bit array in that the latter is used to store a large set of bits indexed by integers and is often wider than any integral type supported by the language. Bit fields, on the other hand, typically fit within a machine word, and the denotation of bits is independent of their numerical index.