AsmWord Type
Represents a smallest chunk of an assembly statement. Specifically, we divide an assembly statement into a series of AsmWords, each of which represents a chunk of the assembly statement. For example, the assembly statement "mov eax, 1" can be divided into five AsmWords: "mov", " ", "eax", ", ", and "1". The first AsmWord is a mnemonic, the second is a space character, the third is a variable (register), the fourth is a space character, and the fifth is a value (immediate).
Record fields
| Record Field | Description | 
            
                
              
               | 
          
            
  | 
        
            
                
              
              
                  Full Usage: 
                   
              AsmWordValue
                  Field type: string
                  
                   | 
          
Static members
| Static member | Description | 
            
                
              
               | 
          |
            
                
              
               | 
          |
            
                
              
               | 
          
            B2R2