This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2009 Przemyslaw Pawelczyk <[email protected]> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # | |
| # Lockable script boilerplate | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* SPDX-License-Identifier: MIT */ | |
| /* | |
| * Copyright (C) 2009 Przemyslaw Pawelczyk <[email protected]> | |
| * | |
| ***** Description ************************************************************ | |
| * | |
| * Simple (and incomplete) syscalls interposition for accessing fixed-size Sun | |
| * xVM VirtualBox Virtual Disk Images (.vdi files), especially using sfdisk. | |
| * | |
| ***** License **************************************************************** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; Fibonacci n-th number (modulo 2^32) | |
| ; | |
| ; input: | |
| ; ecx = n | |
| ; modifies: | |
| ; eax, ecx, edx | |
| ; ouput: | |
| ; eax = number | |
| ; size: | |
| ; 15 bytes |
NewerOlder