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
| `timescale 1ns/1ns | |
| /* These defines determine which machines are compiled in to the design */ | |
| `define INCLUDE_GATED_RESET | |
| `define INCLUDE_BUS_WATCHDOG | |
| `define INCLUDE_DRAM_MACHINE | |
| `define INCLUDE_XBUS_MACHINE | |
| `define INCLUDE_INTERRUPT_CONTROLLER | |
| `define INCLUDE_BUS_ARBITER | |
| `define INCLUDE_ETHERNET_MACHINE |
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
| # Once you have added your POIs to the list below, run the script to output them | |
| # to a file called "pois.ov2". | |
| # | |
| # Next, login to plan.tomtom.com and from the menu on the left navigate to | |
| # My Items > POI Files and then click on Import OV2 File. Once uploaded, the | |
| # file will then be sync'd to your GPS where it is available from My Places in | |
| # the menu. | |
| import struct |
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
| heap_start .equ 0x9000 ; Starting address of heap | |
| heap_size .equ 0x0100 ; Number of bytes available in heap | |
| .org 0 | |
| jp main | |
| .org 0x100 | |
| main: | |
| ld HL, 0x8100 |
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
| { | |
| /* Home */ | |
| "\UF729" = "moveToBeginningOfLine:"; | |
| "$\UF729" = "moveToBeginningOfLineAndModifySelection:"; | |
| /* End */ | |
| "\UF72B" = "moveToEndOfLine:"; | |
| "$\UF72B" = "moveToEndOfLineAndModifySelection:"; | |
| /* Page Up/Down */ |