a multi-component truth table for assembly
- by Malfist
Can someone help me convert this C if statement into something assembly can understand?
if((plain>='a' && plain<='x') || (plain>='A' && plain <='X')){
code = plain+2;
}
plain is a char, which for assembly is stored in the al register.
Any help would be appreciated.