Mercurial
comparison third_party/luajit/dynasm/dasm_x64.lua @ 186:8cf4ec5e2191 hg-web
Fixed merge conflict.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Fri, 23 Jan 2026 22:38:59 -0800 |
| parents | 94705b5986b3 |
| children |
comparison
equal
deleted
inserted
replaced
| 176:fed99fc04e12 | 186:8cf4ec5e2191 |
|---|---|
| 1 ------------------------------------------------------------------------------ | |
| 2 -- DynASM x64 module. | |
| 3 -- | |
| 4 -- Copyright (C) 2005-2023 Mike Pall. All rights reserved. | |
| 5 -- See dynasm.lua for full copyright notice. | |
| 6 ------------------------------------------------------------------------------ | |
| 7 -- This module just sets 64 bit mode for the combined x86/x64 module. | |
| 8 -- All the interesting stuff is there. | |
| 9 ------------------------------------------------------------------------------ | |
| 10 | |
| 11 x64 = true -- Using a global is an ugly, but effective solution. | |
| 12 return require("dasm_x86") |