;
; ------------------------------------------------------------
;
;   PureBasic - Inlined asm example file
;
;    (c) 2001 - Fantaisie Software
;
; ------------------------------------------------------------
;
; Don't forget to enable the 'Inline ASM support' feature in the compiler
; option window.
;

Value.l = 10  ; Declare our own variable

MOV Value, 20 ; Directly use the ASM keywords with PureBasic variable !
INC Value

MessageRequester("ASM Example", "Should be 21: "+Str(Value), 0)

End