[Convert code below to assembly]
#include <msp430.h>void delay_ms(unsigned int delay);#define TIME_START 7/*** The main function.* Notice that we don’t need a return value.* The function is thus of void type.*/void main(void) { WDTCTL = WDTPW | WDTHOLD; // Stop watchdog timer P1DIR &= 0x00; // resetting the P1DIR registers P2DIR &= 0x00;
OR
OR