Try something like this, you can use EAX, ECX and EDX without having to preserve them. If you need to use EBX, ESI or EDI you should preserve and restore them in the procedure.
AddUp Proc LastOBC:DWORD
mov ecx,LastOBC
mov eax,[ecx]
mov edx,10
add eax,edx
Ret
AddUp EndP