Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 ; Copyright (c) 2013 Google Inc. All rights reserved. | |
| 2 ; Use of this source code is governed by a BSD-style license that can be | |
| 3 ; found in the LICENSE file. | |
| 4 | |
| 5 .386 | |
| 6 .model flat, c | |
| 7 | |
| 8 .CODE | |
| 9 | |
| 10 ; extern int dummyfunc(void) | |
| 11 | |
| 12 dummyfunc PROC | |
| 13 IFDEF MEANING_OF_LIFE | |
| 14 mov eax, 42 | |
| 15 ELSE | |
| 16 mov eax, 1 | |
| 17 ENDIF | |
| 18 ret | |
| 19 dummyfunc ENDP | |
| 20 | |
| 21 END | |
| OLD | NEW |