Keil Logo

Peripheral Simulation

For NXP (founded by Philips) P89LPC930 — Port 1 (Quasi-bidirectional, Push-Pull, Input Only, Open Drain)

Simulation support for this peripheral or feature is comprised of:

  • Dialog boxes which display and allow you to change peripheral configuration.
  • VTREGs (Virtual Target Registers) which support I/O with the peripheral.

These simulation capabilities are described below.

Parallel Port 1 Dialog

Parallel Port 1

This dialog displays the SFR and pins of Port 1. This port may be used as a 8-bit general purpose I/O port.

  • P1 represents the P1 SFR. The HEX value and value of each bit is displayed and may be changed from this dialog.
  • P1M1 and P1M2 configure the output mode of each pin for this port.
  • Set P1M1.x:P1M2.x as follows: 0:0 for Quasi-Bidirectional, 0:1 for Push-Pull, 1:0 for Input Only (Hi-Z), or 1:1 for Open Drain.

  • Pins represents the states of the pins on the simulated MCU. You may set the level of the input pin to high (1) or low (0).
  • ENT0 (Enable T0) is set to toggle P1.2 (T0) whenever Timer 0 overflows. This produces an output on T0 that is one-half the Timer 0 overflow rate.

PORTx VTREG
Data Type: unsigned char

The PORTx VTREGs represent the I/O pins of the simulated MCU for Port 0, Port 1, and so on. PORT0 represents Port 0, PORT1 represents Port 1, etc. You may read PORTx to determine the state of the output pins of that port. For example, in the command window, you may type,

PORT0

to obtain value corresponding to the set pins of Port 0. You may also change the input values of port pins by changing the value of the VTREG. For example,

PORT1=0xF0

sets the upper four port pins of Port 1 to a value of 1 and the lower 4 port pins to a value of 0. You may use the bitwise operators AND(&), OR(|) and XOR(^) to change individual bits of the PORTx VTREGs. For example:

PORT1 |=  0x01;  /* Set P1.0 Pin */
PORT3 &= ~0x02;  /* Clr P3.1 Pin */
PORT1 ^=  0x80;  /* Toggle P1.7 Pin */
Get more information about the
Peripheral Simulation Capabilities
of the µVision Debugger.
  Arm logo
Important information

This site uses cookies to store information on your computer. By continuing to use our site, you consent to our cookies.

Change Settings

Privacy Policy Update

Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.