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
| #!/usr/bin/perl | |
| use warnings; | |
| use strict; | |
| use vars qw(@spt $RAW $IMG $buf); | |
| @spt = | |
| ( | |
| 19, 19, 19, 19, |
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
| co = coroutine.create(function(scr) | |
| local w = 0.25 | |
| local lf = 10 | |
| local cr = 13 | |
| function u(ch, t) emu.keypost(ch) emu.wait(t) end | |
| function k(str, t) for c in str:gmatch"." do emu.keypost(c) emu.wait(t) end end | |
| function d(t) emu.wait(t) end |
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
| AccessModifierOffset: -4 | |
| AlignEscapedNewlinesLeft: true | |
| AlignTrailingComments: true | |
| AllowAllParametersOfDeclarationOnNextLine: false | |
| AllowShortFunctionsOnASingleLine: false | |
| AllowShortIfStatementsOnASingleLine: true | |
| AllowShortLoopsOnASingleLine: false | |
| AlwaysBreakBeforeMultilineStrings: false | |
| AlwaysBreakTemplateDeclarations: false | |
| BinPackParameters: false |
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 | |
| # | |
| # build MESS driver, or all of MESS, for 'git bisect run', accounting | |
| # for changes in build process. | |
| # | |
| gmakealways="-j7 NOWERROR=1 USE_QTDEBUG=0" | |
| driver=$1 |
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
| ;=================================================================================== | |
| ; | |
| ; Тест процессора КР1801ВМ2 для УКНЦ | |
| ; | |
| ; Версия 0.3a | |
| ; | |
| ; (c) dr.Titus 2012 | |
| ; | |
| ;=================================================================================== |
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
| : | |
| : 3B2 & related docs | |
| : | |
| References only: | |
| a The AT&T Documentation Guide, 1987 -- http://bitsavers.trailing-edge.com/pdf/att/000-111_ATT_Documentation_Guide_Nov87.pdf | |
| A The AT&T Documentation Guide, 1993 -- https://books.google.com/books?id=lSppn9HCyisC | |
| J Jeff's site -- http://ferretronix.com/tech/3b2/ |
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
| diff --exclude .git -ruN makefs/Makefile makefs1/Makefile | |
| --- makefs/Makefile 2011-07-19 02:52:37.000000000 +0400 | |
| +++ makefs1/Makefile 2013-04-20 19:10:45.000000000 +0400 | |
| @@ -6,7 +6,7 @@ | |
| .include <bsd.own.mk> | |
| PROG= makefs | |
| -SRCS= cd9660.c ffs.c v7fs.c \ | |
| +SRCS= cd9660.c ffs.c rt11fs.c v7fs.c \ | |
| getid.c \ |
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/sh -e | |
| # | |
| # objective: build an ISO image from checked-out (possibly modified) source. | |
| # | |
| if [ $# -lt 1 ]; then | |
| echo "nbrelease.sh: Usage: <arch> <xsrc> <root>" | |
| exit 1 | |
| fi |