Hi

Does anyone know how to convert this command into Assembly Language (namely the Motorola 68K)?

public static int MOVEL(int A, int B) throws IOException {

int SRC = A;
int DST = B;

DST = SRC;
return DST;

}