データシートサーチシステム
  Japanese  ▼
ALLDATASHEET.JP

X  

  • 74LS672

  • AI
    ## 74LS672: 8-Bit Bidirectional Bus Register The **74LS672** (and its counterpart, the 74LS671) is a high-speed Schottky TTL integrated circuit designed to facilitate communication between two 8-bit buses. It essentially combines the functions of two 8-bit storage registers with 3-state bidirectional transceivers. ### 1. Key Features and Functions The device is primarily used to buffer and store data being moved between a microprocessor bus and a peripheral bus. | Feature | Description | | :--- | :--- | | **Bit Width** | 8-bit (Octal) | | **Logic Family** | Low-power Schottky (LS) | | **Output Type** | 3-State (allows connection to common bus lines) | | **Operation** | Bidirectional (A to B or B to A) | | **Register Type** | D-type edge-triggered flip-flops | --- ### 2. Pin Configuration & Logic The 74LS672 typically comes in a 20-pin package. Below is a simplified functional description of the critical pins: | Pin Name(s) | Function | Description | | :--- | :--- | :--- | | **A0 - A7** | I/O Port A | Data input/output for Bus A. | | **B0 - B7** | I/O Port B | Data input/output for Bus B. | | **SAB** | Select A-to-B | Determines if data from Bus A or the A-register is sent to Bus B. | | **SBA** | Select B-to-A | Determines if data from Bus B or the B-register is sent to Bus A. | | **GAB** | Gate A-to-B | Enables the output buffers from A to B. | | **GBA** | Gate B-to-A | Enables the output buffers from B to A. | | **Vcc / GND** | Power | Typically +5V and Ground. | --- ### 3. Operational Modes The 74LS672 is unique because it can store data in one direction while simultaneously passing data in the other, or it can act as a simple buffer. 1. **Storage Mode:** Data on the A-bus can be clocked into the A-register, and data on the B-bus can be clocked into the B-register. 2. **Real-Time Transfer:** Data can pass directly from A to B (or B to A) without being stored in the registers, depending on the logic levels of the Select (S) and Gate (G) pins. 3. **Stored Transfer:** Data previously stored in the internal registers can be placed onto the opposite bus. ### 4. Technical Specifications (Typical) ```json { "supply_voltage_max": "7V", "operating_voltage_min": "4.75V", "operating_voltage_max": "5.25V", "propagation_delay": "approx 15-25ns", "operating_temperature": "0°C to 70°C" } ``` --- ### 5. Common Applications * **Microprocessor Interfacing:** Acting as a bridge between the CPU and memory or I/O devices. * **Data Buffering:** Protecting sensitive components from bus noise or high capacitance loads. * **System Synchronization:** Storing data temporarily when two systems operate at different speeds or clock cycles.
    ✨ Follow-up Questions
    • What is the main difference between the 74LS671 and the 74LS672?
    • How do the 'Select' pins (SAB/SBA) control data flow specifically?
    • Can this IC be used in a 3.3V logic system without level shifters?