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
| * | |
| This file is part of GNU APL, a free implementation of the | |
| ISO/IEC Standard 13751, "Programming Language APL, Extended" | |
| Copyright (C) 2008-2013 Dr. Jürgen Sauermann | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. |
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
| /* | |
| This file is part of GNU APL, a free implementation of the | |
| ISO/IEC Standard 13751, "Programming Language APL, Extended" | |
| Copyright (C) 2008-2013 Dr. Jürgen Sauermann | |
| This program is free software: you can redistribute it and/or modify | |
| it under the terms of the GNU General Public License as published by | |
| the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. |
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
| #define __swap64gen(x) \ | |
| (__uint64_t)((((__uint64_t)(x) & 0xff) << 56) | \ | |
| ((__uint64_t)(x) & 0xff00ULL) << 40 | \ | |
| ((__uint64_t)(x) & 0xff0000ULL) << 24 | \ | |
| ((__uint64_t)(x) & 0xff000000ULL) << 8 | \ | |
| ((__uint64_t)(x) & 0xff00000000ULL) >> 8 | \ | |
| ((__uint64_t)(x) & 0xff0000000000ULL) >> 24 | \ | |
| ((__uint64_t)(x) & 0xff000000000000ULL) >> 40 | \ | |
| ((__uint64_t)(x) & 0xff00000000000000ULL) >> 56) |
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
| // FizzBuzz for Arduino LCD Keypad Shield | |
| // | |
| // include the library code: | |
| #include <LiquidCrystal.h> | |
| unsigned int t; | |
| int adc_key_in ; | |
| // initialize the library with the numbers of the interface pins |
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
| / # dmesg | |
| [ 0.000000] Initializing cgroup subsys cpuset | |
| [ 0.000000] Initializing cgroup subsys cpu | |
| [ 0.000000] Linux version 3.8.7-yocto-standard (clntonsw@irsswdev001) (gcc version 4.7.2 (GCC) ) #1 Tue Oct 1 00:07:32 IST 2013 | |
| [ 0.000000] e820: BIOS-provided physical RAM map: | |
| [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000096fff] usable | |
| [ 0.000000] BIOS-e820: [mem 0x0000000000097000-0x0000000000097fff] reserved | |
| [ 0.000000] BIOS-e820: [mem 0x0000000000098000-0x000000000009ffff] usable | |
| [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000000f0defff] usable | |
| [ 0.000000] BIOS-e820: [mem 0x000000000f0df000-0x000000000f11efff] ACPI data |
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
| unsigned long t; | |
| int Loop=10000; | |
| int pin=1; | |
| void setup() { | |
| Serial.begin(9600); | |
| // initialize the digital pin as an output. | |
| pinMode(pin, OUTPUT); | |
| delay(1000); | |
| } |
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
| Press [Enter] to directly boot. | |
| Press [F7] to show boot menu options. | |