//! returns: 2

.constant dataBase 0x10000;
.data;
.byte 0;
@here
.byte 1;
.word @here;
.text;
@entry
	li     %t0    dataBase;
	lbu    %a0    1(%t0);
	lbu    %t1    2(%t0);
	add    %a0    %a0    %t1;
	li     %a7    93;
	ecall;
