max_stars_repo_path
stringlengths
3
255
max_stars_repo_name
stringlengths
5
116
max_stars_count
int64
0
107k
id
stringlengths
1
7
content
stringlengths
63
1.05M
data/pokemon/base_stats/elekid.asm
Dev727/ancientplatinum
2
121459
db 0 ; species ID placeholder db 45, 63, 37, 95, 65, 55 ; hp atk def spd sat sdf db ELECTRIC, ELECTRIC ; type db 45 ; catch rate db 106 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F25 ; gender ratio db 100 ; unknown 1 db 25 ; step cycles to hatch db 5 ; unknown 2 INCBIN "gfx/pokemon/elek...
programs/oeis/189/A189316.asm
karttu/loda
0
121460
<filename>programs/oeis/189/A189316.asm ; A189316: Expansion of 5*(1-x-x^2)/((1+x)*(1-3*x+x^2)) ; 5,5,15,35,95,245,645,1685,4415,11555,30255,79205,207365,542885,1421295,3720995,9741695,25504085,66770565,174807605,457652255,1198149155,3136795215,8212236485,21499914245,56287506245,147362604495,385800307235,1010038317215 ...
MIPS_assembly/tron.asm
pirminschmid/FPGAgoesArcade
1
121462
<gh_stars>1-10 ################################################################################ # # TRON # # A hardware / software project on Xilinx Spartan 3 boards # by <NAME> and <NAME> # v1.0 May 2014 # ################################################################################ # # this source code: ...
libsrc/graphics/pc6001/xorpixl.asm
jpoikela/z88dk
0
121463
<gh_stars>0 SECTION code_clib PUBLIC xorpixl EXTERN xor_MODE0 EXTERN xor_MODE1 EXTERN xor_MODE2 EXTERN __pc6001_mode INCLUDE "target/pc6001/def/pc6001.def" xorpixl: ld a,(__pc6001_mode) cp MODE_1 jp z,xor_MODE1 cp MODE_2 jp z,xor_MODE2 and a ret nz jp xor_MODE0
coverage/IN_CTS/0539-COVERAGE-instructions-h-2377/work/variant/1_spirv_asm/shader.frag.asm
asuonpaa/ShaderTests
0
121464
<reponame>asuonpaa/ShaderTests ; SPIR-V ; Version: 1.0 ; Generator: Khronos Glslang Reference Front End; 10 ; Bound: 75 ; Schema: 0 OpCapability Shader %1 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Fragment %4 "main" %56 ...
libsrc/target/zx/display/zx_pxy2aaddr_callee.asm
jpoikela/z88dk
38
121465
; uchar __CALLEE__ *zx_pxy2aaddr_callee(uchar xcoord, uchar ycoord) ; aralbrec 06.2007 SECTION code_clib PUBLIC zx_pxy2aaddr_callee PUBLIC _zx_pxy2aaddr_callee PUBLIC ASMDISP_ZX_PXY2AADDR_CALLEE .zx_pxy2aaddr_callee ._zx_pxy2aaddr_callee pop hl pop de ex (sp),hl ld h,e .asmentry ; enter: l = pix...
html/current_projects/computer_security/code/sc2.asm
markkhusid/MKDynamics_website
0
121466
section .text ; start the code section of the asm global _start ; declare a global label _start: ; keeps the linker from complaining or guessing ;setreuid (0,0) xor eax, eax ; clear the eax registry, prepare the next line mov al, 0x46 ; set the syscall value to decimal 70 or hex 46, one ...
oeis/082/A082425.asm
neoneye/loda-programs
11
121467
<gh_stars>10-100 ; A082425: a(1)=1, a(n) = n*(a(n-1) + a(n-2) + ... + a(2) + a(1)) - 1. ; Submitted by <NAME> ; 1,1,5,27,169,1217,9939,90871,920069,10222989,123698167,1619321459,22805443881,343835923129,5525934478859,94309281772527,1703461402016269,32465970250192421,651123070017747999,13707854105636799979 mov $2,1 mov...
libsrc/stdio/ansi/aquarius/f_ansi_dline.asm
andydansby/z88dk-mk2
1
121468
; ; ; ANSI Video handling for the Mattel Aquarius ; ; ; Clean a text line ; ; <NAME> - Dec. 2001 ; ; in: A = text row number ; ; ; $Id: f_ansi_dline.asm,v 1.1 2001/12/27 09:35:57 stefano Exp $ ; XLIB ansi_del_line XREF aquarius_attr .ansi_del_line ld hl,$3000 inc a .sum_loop ld de,40 add hl,de dec a jr nz,...
Transynther/x86/_processed/AVXALIGN/_ht_zr_un_/i7-7700_9_0x48.log_21829_1476.asm
ljhsiun2/medusa
9
121469
.global s_prepare_buffers s_prepare_buffers: push %r14 push %r9 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x1da18, %rsi lea addresses_A_ht+0x101d8, %rdi clflush (%rdi) nop nop nop nop nop inc %r14 mov $46, %rcx rep movsw nop nop nop nop nop dec %rbx lea addresses_D_ht+0x9d31, %r9 ad...
exercise/04/mult/mult.asm
TKTim/co107a
0
121470
<gh_stars>0 // This file is part of www.nand2tetris.org // and the book "The Elements of Computing Systems" // by <NAME> Schocken, MIT Press. // File name: projects/04/Mult.asm // Multiplies R0 and R1 and stores the result in R2. // (R0, R1, R2 refer to RAM[0], RAM[1], and RAM[2], respectively.) // Put your c...
libsrc/_DEVELOPMENT/sound/bit/c/sccz80/bit_beep_raw.asm
jpoikela/z88dk
640
121471
<gh_stars>100-1000 ; void bit_beep_raw(uint16_t num_cycles, uint16_t tone_period_T) SECTION code_clib SECTION code_sound_bit PUBLIC bit_beep_raw EXTERN asm_bit_beep_raw bit_beep_raw: pop af pop hl pop de push de push hl push af jp asm_bit_beep_raw
programs/oeis/318/A318054.asm
neoneye/loda
22
121472
<filename>programs/oeis/318/A318054.asm<gh_stars>10-100 ; A318054: a(n) = n*(n + 1)*(n^2 + n + 22)/24. ; 0,2,7,17,35,65,112,182,282,420,605,847,1157,1547,2030,2620,3332,4182,5187,6365,7735,9317,11132,13202,15550,18200,21177,24507,28217,32335,36890,41912,47432,53482,60095,67305,75147,83657,92872,102830,113570,125132,137...
programs/oeis/097/A097141.asm
jmorken/loda
1
121473
; A097141: Expansion of x*(1+2*x)/(1+x)^2. ; 0,1,0,-1,2,-3,4,-5,6,-7,8,-9,10,-11,12,-13,14,-15,16,-17,18,-19,20,-21,22,-23,24,-25,26,-27,28,-29,30,-31,32,-33,34,-35,36,-37,38,-39,40,-41,42,-43,44,-45,46,-47,48,-49,50,-51,52,-53,54,-55,56,-57,58,-59,60,-61,62,-63,64,-65,66,-67,68,-69,70,-71,72,-73,74,-75,76,-77,78,-79,8...
oeis/193/A193653.asm
neoneye/loda-programs
11
121474
; A193653: Q-residue of the Delannoy triangle A008288, where Q is the triangular array (t(i,j)) given by t(i,j)=1. ; Submitted by <NAME>(s1) ; 1,2,6,20,70,248,882,3140,11182,39824,141834,505148,1799110,6407624,22821090,81278516,289477726,1030990208,3671926074,13077758636,46577128054,165886901432,590814960402,2104218684...
emu.asm
fastiuk/archemu
0
121475
r1ltr2 MOV r1, #20 MOV r2, #10 CMP r1, r2 BLT r1ltr2 r2ltr1 MOV r2, r1 MOV r1, #30 CMP r2, r1 BLT r2ltr1 MOV r0, #0x20 MOV r3, #0x30 CMP r0, r3 halt BLT halt
source/boot/ezloader.asm
Rudster816/wnos
1
121476
; main.asm ; ; Copyright (c) 2012, <NAME> ; All rights reserved. ; Redistribution and use in source and binary forms, with or without ; modification, are permitted provided that the following conditions are met: ; 1. Redistributions of source code must retain the above copyright notice, this ; list of co...
circ.asm
peckhamdata/cgl-6502
4
121477
circ_radius: .byte $0a f: .byte $00 ddf_y: .byte $00 ddf_x: .byte $00 xx: .byte $00 yy: .byte $00 circ_x: .byte $00 circ_y: .byte $00 circ_plot: txa pha lda circ_radius sta num1 ...
programs/oeis/186/A186620.asm
neoneye/loda
22
121478
; A186620: Fibonacci sequence beginning 12, 25. ; 12,25,37,62,99,161,260,421,681,1102,1783,2885,4668,7553,12221,19774,31995,51769,83764,135533,219297,354830,574127,928957,1503084,2432041,3935125,6367166,10302291,16669457,26971748,43641205,70612953,114254158 add $0,3 mov $1,6 mov $2,8 lpb $0 sub $0,1 add $2,$1 mo...
tis-100/22280_signal_multiplexer.asm
glupmjoed/puzzles
0
121479
@0 @1 S: MOV RIGHT, ACC JGZ DIS MOV UP, DOWN JMP S DIS: MOV NIL, DOWN MOV UP, NIL @2 MOV UP, ACC MOV ACC, LEFT MOV ACC, RIGHT @3 S: MOV LEFT, ACC JLZ DIS MOV UP, DOWN JMP S DIS: MOV NIL, DOWN MOV UP, NIL @4 @5 MOV UP, RIGHT @6 MOV LEFT, ACC ADD RIGHT MOV ACC, DOWN @7 MOV UP, LEFT @8 @9 MOV UP, DOWN @10
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca_notsx.log_21829_351.asm
ljhsiun2/medusa
9
121480
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %r15 push %rax push %rdi lea addresses_WT_ht+0x10c2c, %r12 nop nop xor $32401, %r10 movb (%r12), %r15b nop nop nop nop and $23245, %r11 lea addresses_normal_ht+0x108bc, %r12 nop nop nop nop nop xor $23167, %rax mov $0x6162636465666768, %rdi...
projects/Links_Awakening_gb.windfish/disassembly/bank_01.asm
jverkoey/awaken
68
121481
SECTION "ROM Bank 01", ROMX[$4000], BANK[$01] toc_01_4000: ld a, [wGameplaySubtype] jumptable dw JumpTable_4010_01 ; 00 dw JumpTable_4041_01 ; 01 dw JumpTable_404D_01 ; 02 dw JumpTable_4065_01 ; 03 dw JumpTable_4073_01 ; 04 dw JumpTable_55FD_01 ; 05 JumpTable_4010_01: call JumpTa...
libsrc/_DEVELOPMENT/math/float/math32/c/sccz80/cm32_sccz80_fsread.asm
jpoikela/z88dk
640
121482
<reponame>jpoikela/z88dk SECTION code_clib SECTION code_fp_math32 PUBLIC cm32_sccz80_fsreadl PUBLIC cm32_sccz80_fsread1 EXTERN cm32_sccz80_fsload .cm32_sccz80_fsreadl ; sccz80 float primitive ; Read right sccz80 float from the stack ; ; Convert from sccz80_float calling to d32_float. ; ; en...
oeis/024/A024810.asm
neoneye/loda-programs
11
121484
; A024810: a(n) = floor( tan(m*Pi/2) ), where m = 1 - 2^(-n). ; Submitted by <NAME> ; 1,2,5,10,20,40,81,162,325,651,1303,2607,5215,10430,20860,41721,83443,166886,333772,667544,1335088,2670176,5340353,10680707,21361414,42722829,85445659,170891318,341782637,683565275,1367130551,2734261102,5468522204,10937044409,218740888...
constants/trainer_constants.asm
AtmaBuster/pokecrystal16-493-plus
1
121485
<reponame>AtmaBuster/pokecrystal16-493-plus<filename>constants/trainer_constants.asm<gh_stars>1-10 trainerclass: MACRO enum \1 const_value = 1 ENDM ; trainer class ids ; `trainerclass` indexes are for: ; - TrainerClassNames (see data/trainers/class_names.asm) ; - TrainerClassAttributes (see data/trainers/attributes.a...
programs/oeis/098/A098704.asm
neoneye/loda
22
121486
<gh_stars>10-100 ; A098704: Decimal form of the binary numbers 10, 100010, 1000100010, 10001000100010, 100010001000100010,... ; 2,34,546,8738,139810,2236962,35791394,572662306,9162596898,146601550370,2345624805922,37529996894754,600479950316066,9607679205057058,153722867280912930,2459565876494606882,3935305402391371011...
programs/oeis/046/A046660.asm
neoneye/loda
22
121487
<reponame>neoneye/loda ; A046660: Excess of n = number of prime divisors (with multiplicity) - number of prime divisors (without multiplicity). ; 0,0,0,1,0,0,0,2,1,0,0,1,0,0,0,3,0,1,0,1,0,0,0,2,1,0,2,1,0,0,0,4,0,0,0,2,0,0,0,2,0,0,0,1,1,0,0,3,1,1,0,1,0,2,0,2,0,0,0,1,0,0,1,5,0,0,0,1,0,0,0,3,0,0,1,1,0,0,0,3,3,0,0,1,0,0,0,...
Transynther/x86/_processed/NC/_zr_/i3-7100_9_0xca_notsx.log_405_270.asm
ljhsiun2/medusa
9
121488
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %rax push %rbp lea addresses_WC_ht+0x4bfc, %r13 clflush (%r13) nop nop cmp $62609, %rbp movb $0x61, (%r13) nop nop nop nop add %rax, %rax pop %rbp pop %rax pop %r13 pop %r12 ret .global s_faulty_load s_faulty_load: push %r12 push ...
oeis/167/A167350.asm
neoneye/loda-programs
11
121489
; A167350: Totally multiplicative sequence with a(p) = (p+1)*(p-2) = p^2-p-2 for prime p. ; Submitted by <NAME> ; 1,0,4,0,18,0,40,0,16,0,108,0,154,0,72,0,270,0,340,0,160,0,504,0,324,0,64,0,810,0,928,0,432,0,720,0,1330,0,616,0,1638,0,1804,0,288,0,2160,0,1600,0,1080,0,2754,0,1944,0,1360,0,3420,0,3658,0,640,0,2772,0,4420,...
oeis/142/A142298.asm
neoneye/loda-programs
11
121490
<filename>oeis/142/A142298.asm ; A142298: Primes congruent to 15 mod 44. ; Submitted by <NAME> ; 59,103,191,367,499,587,631,719,983,1291,1423,1511,1907,1951,2039,2083,2347,2699,2963,3271,3359,3491,3623,3931,4019,4283,4327,4547,4591,4679,4723,4943,4987,5119,5471,5647,5779,5867,6043,6131,6263,6571,6659,6703,6791,6967,718...
programs/oeis/130/A130213.asm
neoneye/loda
22
121491
<filename>programs/oeis/130/A130213.asm ; A130213: Order of modular group of degree 3^(n-1) + 1. ; 0,12,360,9828,265680,7174332,193709880,5230175508,141214764960,3812798732652,102945566017800,2779530283189188,75047317648233840,2026277576508690972,54709494565753788120,1477156353275409674868,39883221538436233408320,10768...
programs/oeis/043/A043654.asm
neoneye/loda
22
121492
; A043654: Numbers whose base-12 representation has exactly 5 runs. ; 20881,20882,20883,20884,20885,20886,20887,20888,20889,20890,20891,20904,20905,20907,20908,20909,20910,20911,20912,20913,20914,20915,20916,20917,20918,20920,20921,20922,20923,20924 mov $4,$0 lpb $0 sub $0,1 div $0,12 mov $1,2 mov $2,5 add $...
sqr.asm
tz01x/8086_emu.ind
0
121493
ORG 100h ; for COM file. ; setting data segment value mov ax,900h mov ds,ax ; set staring index register to 1 mov si,1h ; set ax to 10 , which indicated that it should print 10x10 square mov ax,10 ; n=10 mov bx,ax mov cx,ax ; storing ax register value to memory mov [si+10h],ax ; storing 1 to ...
programs/oeis/320/A320926.asm
neoneye/loda
22
121494
<filename>programs/oeis/320/A320926.asm<gh_stars>10-100 ; A320926: Concatenation of successive segments generated by the morphism {0 -> {0, 0, 1}, 1 -> {0}}, starting with 0. ; 0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,0,1,0,0,0,1...
oeis/232/A232162.asm
neoneye/loda-programs
11
121495
; A232162: Number of Weyl group elements, not containing an s_r factor, which contribute nonzero terms to Kostant's weight multiplicity formula when computing the multiplicity of the zero-weight in the adjoint representation for the Lie algebra of type B and rank n. ; Submitted by <NAME> ; 0,0,2,3,5,14,30,62,139,305,66...
Driver/Printer/PrintCom/Styles/stylesSRNLQ.asm
steakknife/pcgeos
504
121496
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) Berkeley Softworks 1990 -- All Rights Reserved PROJECT: PC GEOS MODULE: Print Drivers FILE: stylesSRNLQ.asm AUTHOR: <NAME> ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name D...
programs/oeis/254/A254828.asm
jmorken/loda
1
121497
<reponame>jmorken/loda ; A254828: Number of length 1 1..(n+1) arrays with every leading partial sum divisible by 2, 3 or 5. ; 1,2,3,4,5,5,6,7,8,8,9,9,10,11,12,12,13,13,14,15,16,16,17,18,19,20,21,21,22,22,23,24,25,26,27,27,28,29,30,30,31,31,32,33,34,34,35,35,36,37,38,38,39,40,41,42,43,43,44,44,45,46,47,48,49,49,50,51,52...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_21829_1235.asm
ljhsiun2/medusa
9
121498
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r8 push %rbp push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x123a3, %r8 nop nop inc %r12 mov $0x6162636465666768, %rdx movq %rdx, (%r8) nop cmp $40531, %rdi lea addresses_normal_ht+0x9c23, %rbp nop n...
oeis/268/A268460.asm
neoneye/loda-programs
11
121499
<reponame>neoneye/loda-programs<filename>oeis/268/A268460.asm ; A268460: Number of length-6 0..n arrays with no adjacent pair x,x+1 followed at any distance by x+1,x. ; 22,456,3146,13204,41526,108032,245626,504876,959414,1712056,2901642,4710596,7373206,11184624,16510586,23797852,33585366,46516136,63349834,84976116,1124...
oeis/234/A234306.asm
loda-lang/loda-programs
11
121500
<gh_stars>10-100 ; A234306: a(n) = n + 1 - d(2n), where d(n) is the number of divisors of n. ; Submitted by <NAME>(w4) ; 0,0,0,1,2,1,4,4,4,5,8,5,10,9,8,11,14,10,16,13,14,17,20,15,20,21,20,21,26,19,28,26,26,29,28,25,34,33,32,31,38,31,40,37,34,41,44,37,44,42,44,45,50,43,48,47,50,53,56,45,58,57,52,57,58,55,64,61,62,59,68,...
programs/oeis/026/A026395.asm
jmorken/loda
1
121501
; A026395: a(n) = 5*a(n-2), starting 1,2,4. ; 1,2,4,10,20,50,100,250,500,1250,2500,6250,12500,31250,62500,156250,312500,781250,1562500,3906250,7812500,19531250,39062500,97656250,195312500,488281250,976562500,2441406250,4882812500,12207031250 mov $1,1 mov $2,$0 lpb $2 add $4,$1 mul $1,2 add $1,$3 lpb $4 sub...
programs/oeis/155/A155588.asm
neoneye/loda
22
121502
; A155588: a(n) = 5^n + 2^n - 1^n. ; 1,6,28,132,640,3156,15688,78252,390880,1953636,9766648,48830172,244144720,1220711316,6103532008,30517610892,152587956160,762939584196,3814697527768,19073486852412,95367432689200,476837160300276 mov $1,5 pow $1,$0 mov $2,2 pow $2,$0 add $1,$2 sub $1,1 mov $0,$1
programs/oeis/002/A002417.asm
neoneye/loda
22
121503
; A002417: 4-dimensional figurate numbers: a(n) = n*binomial(n+2, 3). ; 1,8,30,80,175,336,588,960,1485,2200,3146,4368,5915,7840,10200,13056,16473,20520,25270,30800,37191,44528,52900,62400,73125,85176,98658,113680,130355,148800,169136,191488,215985,242760,271950,303696,338143,375440,415740,459200,505981,556248,610170,66...
src/kernel/kern.asm
thomtl/Alpha-OS
1
121504
<filename>src/kernel/kern.asm [bits 16] [global kern_main] BOOT_DRIVE_LOC equ 0x500 RET_ADDR equ 0x510 DEBUG equ 1 kern_boot: cli xor ax, ax xor bx, bx xor cx, cx xor dx, dx mov al, [BOOT_DRIVE_LOC] mov [BOOT_DRIVE], al call reset_disk ; Set 80x50 text mode mov ax, 0x1112 xor ...
third-party/gmp/gmp-src/mpn/x86_64/atom/aors_n.asm
jhh67/chapel
1,602
121505
<reponame>jhh67/chapel dnl X86-64 mpn_add_n, mpn_sub_n, optimised for Intel Atom. dnl Copyright 2011, 2017 Free Software Foundation, Inc. dnl Contributed to the GNU project by <NAME>. Ported to 64-bit by dnl <NAME>. dnl This file is part of the GNU MP Library. dnl dnl The GNU MP Library is free software; you ...
programs/oeis/324/A324913.asm
neoneye/loda
22
121506
<reponame>neoneye/loda<gh_stars>10-100 ; A324913: a(n) = Sum_{k=1..n} 2^k * phi(k), where phi is the Euler totient function A000010. ; 2,6,22,54,182,310,1078,2102,5174,9270,29750,46134,144438,242742,504886,1029174,3126326,4699190,14136374,22524982,47690806,89633846,274183222,408400950,1079489590,1884795958,4300715062,7...
libsrc/_DEVELOPMENT/math/float/am9511/lam32/c/sccz80/l_f32_swap.asm
ahjelm/z88dk
640
121507
SECTION code_fp_am9511 PUBLIC l_f32_swap ; Entry: dehl = right hand operand ; Stack: defw return address ; defw left hand LSW ; defw left hand MSW .l_f32_swap pop af ; Return pop bc ; left-LSW ex de,hl ; de = right-LSW, hl = right-MSW ...
Encryption/Cryptlib/cryptolib_1.2/cryptolib/src/lmult16.asm
dendisuhubdy/grokmachine
46
121508
<reponame>dendisuhubdy/grokmachine<gh_stars>10-100 ; Static Name Aliases ; TITLE lm.c .MODEL LARGE .386p .387 INCLUDELIB LLIBCE INCLUDELIB OLDNAMES.LIB LM_TEXT SEGMENT WORD USE16 PUBLIC 'CODE' LM_TEXT ENDS _DATA SEGMENT WORD USE16 PUBLIC 'DATA' _DATA ENDS CONST SEGMENT WORD USE16 PUBLIC 'CONST' CONST END...
Transynther/x86/_processed/NONE/_st_/i7-7700_9_0xca.log_21829_112.asm
ljhsiun2/medusa
9
121509
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r15 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_D_ht+0x5b69, %rdi nop nop nop sub %rax, %rax mov $0x6162636465666768, %rbx movq %rbx, (%rdi) nop nop add %r10, %r10 lea addresses_WC_ht+0x1aae3, %r14 cmp $8043, %r15 movups (%r14), ...
mc-sema/validator/x86/tests/MAXSSrr.asm
randolphwong/mcsema
2
121512
<reponame>randolphwong/mcsema BITS 32 ;TEST_FILE_META_BEGIN ;TEST_TYPE=TEST_F ;TEST_IGNOREFLAGS= ;TEST_FILE_META_END mov ecx, 40 cvtsi2ss xmm0, ecx mov ecx, 10 cvtsi2ss xmm1, ecx ;TEST_BEGIN_RECORDING maxss xmm0, xmm1 ;TEST_END_RECORDING xor ecx, ecx cvtsi2ss xmm0, ecx cvtsi2ss xmm1, ecx
programs/oeis/344/A344399.asm
neoneye/loda
22
121513
<reponame>neoneye/loda ; A344399: a(n) = 4^n*binomial(n - 1/2, -1/2)*(n^2 + 1). ; 1,4,30,200,1190,6552,34188,171600,836550,3986840,18660356,86062704,392102620,1768102000,7902970200,35056559520,154477660230,676745803800,2949418972500,12794985495600,55276458056820,237909980502480,1020487997404200,4363718285628000 mov $1...
oeis/063/A063694.asm
neoneye/loda-programs
11
121514
<filename>oeis/063/A063694.asm ; A063694: Remove odd-positioned bits from the binary expansion of n. ; Submitted by <NAME>(s1) ; 0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,0,1,0,1,4,5,4,5,0,1,0,1,4,5,4,5,16,17,16,17,20,21,20,21,16,17,16,17,20,21,20,21,64,65,64,65,68,69,68,69,64,65,6...
Source/Apps/Test/MBC/leds2.asm
b1ackmai1er/RomWBW
1
121516
<filename>Source/Apps/Test/MBC/leds2.asm<gh_stars>1-10 ; program to test user LEDs on Z80 MBC clock board ; by <NAME>, 6 Jul 2021 org $0100 LD A,%00000011 OUT ($70),A ; turn on USERLED0 and USERLED1 RET end
data/mapObjects/CeruleanTrashedHouse.asm
AmateurPanda92/pokemon-rby-dx
9
121517
CeruleanTrashedHouse_Object: db $a ; border block db 3 ; warps warp 2, 7, 0, -1 warp 3, 7, 0, -1 warp 3, 0, 7, -1 db 1 ; signs sign 3, 0, 3 ; CeruleanHouseTrashedText3 db 2 ; objects object SPRITE_FISHER, 2, 1, STAY, DOWN, 1 ; person object SPRITE_GIRL, 5, 6, WALK, 2, 2 ; person ; warp-to warp_to 2, 7, ...
Transynther/x86/_processed/AVXALIGN/_st_/i7-7700_9_0xca_notsx.log_21829_1636.asm
ljhsiun2/medusa
9
121518
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r14 push %r8 push %r9 push %rax push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x27ff, %r9 nop dec %rdi mov (%r9), %esi nop nop nop nop nop add %rdx, %rdx lea addresses_D_ht+0x6c8f, %rsi lea addresses_UC_ht+0x18997, %rdi nop nop nop sub $620...
45/qb/ir/ssdescan.asm
minblock/msdos
0
121519
page 49,132 TITLE ssdescan - Descan support routines ;*** ;ssdescan - Descan dispatched routines ; ; Copyright <C> 1986, Microsoft Corporation ; ;Purpose: ; ; This module contains descan routines. There is one descan ; routine for one to many scan routines. ; ; The connection between scan routines and descan ro...
tasks/flags/overflow.asm
yds12/x86-roadmap
15
121520
<gh_stars>10-100 ; A program that uses the overflow flag by making a conditional jump ; if there was an overflow in previous calculations. global asm_func section .text asm_func: mov al, 01111111b ; the most significant bit is the "sign" inc al ; this increment should change the sign to negative (1)...
programs/oeis/184/A184104.asm
neoneye/loda
22
121522
; A184104: n+floor(5*sqrt(n)); complement of A184105. ; 6,9,11,14,16,18,20,22,24,25,27,29,31,32,34,36,37,39,40,42,43,45,46,48,50,51,52,54,55,57,58,60,61,63,64,66,67,68,70,71,73,74,75,77,78,79,81,82,84,85,86,88,89,90,92,93,94,96,97,98,100,101,102,104,105,106,107,109,110,111,113,114,115,117,118,119,120,122,123,124,126,12...
stage2/src/start.asm
cjsmeele/osdev
2
121523
<reponame>cjsmeele/osdev ;; \file ;; \brief Loads the C portion of stage2 ;; \author <NAME> ;; \copyright Copyright (c) 2015, <NAME>. All rights reserved. ;; \license MIT. See LICENSE for the full license text. [bits 16] extern stage2Main global start global _start SECTION .data u16_boot_device: dw 0 u16_...
lib/test_crt0.asm
andydansby/z88dk-mk2
1
121524
; ; Startup for test emulator ; ; $Id: test_crt0.asm,v 1.3 2009/06/22 21:20:05 dom Exp $ module test_crt0 org 0x0000 INCLUDE "test_cmds.def" ;-------- ; Include zcc_opt.def to find out some info ;-------- INCLUDE "zcc_opt.def" ;-------- ; Some scope definitions ;-------- XREF _main ...
src/rendering.asm
Gegel85/RunnerGB
0
121525
<gh_stars>0 ; Scrolls the background and moves the player and moon sprites accordingly ; Params: ; None ; Return: ; None ; Registers: ; af -> Not preserved ; bc -> Ppreserved ; de -> Not preserved ; hl -> Not preserved scrollBg:: ld a, [CURRENT_SCROLL] ld b, a ld hl, BG_2_POS add [hl] ld [hld], a...
programs/oeis/099/A099429.asm
karttu/loda
0
121526
; A099429: A Jacobsthal-Lucas convolution. ; 0,0,2,3,12,25,66,147,344,765,1710,3751,8196,17745,38234,81915,174768,371365,786438,1660239,3495260,7340025,15379122,32156323,67108872,139810125,290805086,603979767,1252698804,2594876065,5368709130,11095332171,22906492256 mov $2,$0 lpb $2,1 mov $1,$3 mov $3,$0 mul $0,2...
programs/oeis/224/A224455.asm
karttu/loda
0
121528
<filename>programs/oeis/224/A224455.asm ; A224455: The hyper-Wiener index of the linear phenylene with n hexagons. ; 42,396,1656,4740,10890,21672,38976,65016,102330,153780,222552,312156,426426,569520,745920,960432,1218186,1524636,1885560,2307060,2795562,3357816,4000896,4732200,5559450,6490692,7534296,8698956,9993690,11...
Transynther/x86/_processed/NONE/_xt_/i7-8650U_0xd2_notsx.log_4337_1776.asm
ljhsiun2/medusa
9
121529
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r15 push %rax push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0xee94, %rsi lea addresses_WC_ht+0x154, %rdi nop nop nop inc %r15 mov $60, %rcx rep movsq nop nop nop nop nop dec %r13 lea addresses_WC_ht+0x17fa6, %rax nop nop nop add $36136, %rbp mov...
libsrc/_DEVELOPMENT/compress/aplib/c/sccz80/sms_aplib_depack_vram.asm
dikdom/z88dk
1
121530
<reponame>dikdom/z88dk ; void sms_aplib_depack_vram(void *dst, void *src) SECTION code_clib SECTION code_compress_aplib PUBLIC sms_aplib_depack_vram EXTERN asm_sms_aplib_depack_vram sms_aplib_depack_vram: pop af pop hl pop de push de push hl push af jp asm_sms_aplib_depack_vram ; SDC...
test/read_back_indirect_1.asm
MichalPleban/6509-test
2
121531
.include "src/defs.inc" .export read_back_indirect_1 ; -------------------------------------------------------------------------- ; ; Test reading back the value written to the $01 register, ; using indirect read. ; ; -------------------------------------------------------------------------- read_back_ind...
oeis/178/A178756.asm
neoneye/loda-programs
11
121532
<filename>oeis/178/A178756.asm ; A178756: Rectangular array T(n,k) = binomial(n,2)*k*n^(k-1) read by antidiagonals. ; Submitted by <NAME> ; 1,4,3,12,18,6,32,81,48,10,80,324,288,100,15,192,1215,1536,750,180,21,448,4374,7680,5000,1620,294,28,1024,15309,36864,31250,12960,3087,448,36,2304,52488,172032,187500,97200,28812,53...
programs/oeis/118/A118406.asm
neoneye/loda
22
121533
<reponame>neoneye/loda ; A118406: Unsigned row sums of triangle A118404. ; 1,2,2,4,4,8,14,28,52,104,206,412,820,1640,3278,6556,13108,26216,52430,104860,209716,419432,838862,1677724,3355444,6710888,13421774,26843548,53687092,107374184,214748366,429496732,858993460,1717986920,3435973838 lpb $0 sub $0,1 trn $0,1 mo...
programs/oeis/108/A108161.asm
jmorken/loda
1
121535
<reponame>jmorken/loda<filename>programs/oeis/108/A108161.asm ; A108161: Partial sums of the positive integers n according to the rule: if n is square then add sqrt(n) else add n. ; 0,1,3,6,8,13,19,26,34,37,47,58,70,83,97,112,116,133,151,170,190,211,233,256,280,285,311,338,366,395,425,456,488,521,555,590,596,633,671,71...
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xca_notsx.log_17_1462.asm
ljhsiun2/medusa
9
121536
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r15 push %r9 push %rdx lea addresses_WC_ht+0x1917b, %r15 add %r10, %r10 mov $0x6162636465666768, %rdx movq %rdx, %xmm3 movups %xmm3, (%r15) dec %r10 lea addresses_A_ht+0x17d43, %r10 clflush (%r10) sub %r9, %r9 mov (%r10), %r13 nop and %r9, %r9 pop %...
programs/oeis/222/A222259.asm
jmorken/loda
1
121537
<filename>programs/oeis/222/A222259.asm ; A222259: Lexicographically earliest injective sequence of positive integers such that the sum of 8 consecutive terms is always divisible by 8. ; 1,2,3,4,5,6,7,12,9,10,11,20,13,14,15,28,17,18,19,36,21,22,23,44,25,26,27,52,29,30,31,60,33,34,35,68,37,38,39,76,41,42,43,84,45,46,47,...
drivers/mouse.asm
jakiki6/simpleOS
5
121538
<reponame>jakiki6/simpleOS ; https://stackoverflow.com/questions/54280828/making-a-mouse-handler-in-x86-assembly driver_mouse_setup: push es push bx int 0x11 test ax, 4 jz .no_mouse mov ax, 0xc205 mov bh, 3 int 0x15 jc .no_mouse push cs pop es mov bx, .mouse_callback_dummy mov ax, 0xc207 int 0x15 jc...
Transynther/x86/_processed/AVXALIGN/_ht_zr_/i9-9900K_12_0xca.log_21829_1212.asm
ljhsiun2/medusa
9
121539
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r15 push %r8 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x1dcfe, %rdx nop nop nop nop and %r8, %r8 mov $0x6162636465666768, %r13 movq %r13, %xmm6 vmovups %ymm6, (%rdx) nop nop nop nop nop cmp $26971, %r13 lea addresses_WC_h...
libsrc/_DEVELOPMENT/adt/b_array/c/sccz80/b_array_insert_block.asm
meesokim/z88dk
0
121540
; void *b_array_insert_block(b_array_t *a, size_t idx, size_t n) SECTION code_adt_b_array PUBLIC b_array_insert_block EXTERN asm_b_array_insert_block b_array_insert_block: pop af pop de pop bc pop hl push hl push bc push de push af jp asm_b_array_insert_block
Appl/Dump/bmp.asm
steakknife/pcgeos
504
121541
<reponame>steakknife/pcgeos<filename>Appl/Dump/bmp.asm<gh_stars>100-1000 COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) Berkeley Softworks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: Screen Dumps -- Bmp Format FILE: bmp.asm AUTHOR: <NAME>, Dec 4, 19...
Transynther/x86/_processed/US/_zr_/i3-7100_9_0xca_notsx.log_20115_1965.asm
ljhsiun2/medusa
9
121544
<filename>Transynther/x86/_processed/US/_zr_/i3-7100_9_0xca_notsx.log_20115_1965.asm .global s_prepare_buffers s_prepare_buffers: push %r12 push %r15 push %r8 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WT_ht+0x6b6a, %rbx nop nop cmp %r15, %r15 vmovups (%rbx), %ymm4 vextracti128 $1, %ymm4, %xmm4 vpe...
programs/oeis/302/A302689.asm
neoneye/loda
22
121545
<reponame>neoneye/loda ; A302689: a(n) = 4 + 2^n - 4*n. ; 2,0,0,4,16,44,104,228,480,988,2008,4052,8144,16332,32712,65476,131008,262076,524216,1048500,2097072,4194220,8388520,16777124,33554336,67108764,134217624,268435348,536870800,1073741708,2147483528,4294967172,8589934464 mov $1,2 pow $1,$0 sub $1,$0 sub $1,$0 mul $...
Transynther/x86/_processed/NONE/_ht_zr_/i7-7700_9_0xca.log_21829_844.asm
ljhsiun2/medusa
9
121546
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r13 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0x1b775, %rax nop nop nop add %rsi, %rsi mov $0x6162636465666768, %rbx movq %rbx, %xmm0 and $0xffffffffffffffc0, %rax vmovaps %ymm0, (%rax) add %rdi, %rdi lea addresses_WT_ht+0...
data/pokemon/base_stats/nidoking.asm
Ebernacher90/pokecrystal-allworld
0
121547
db 0 ; species ID placeholder db 81, 102, 77, 85, 85, 75 ; hp atk def spd sat sdf db POISON, GROUND ; type db 45 ; catch rate db 195 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F0 ; gender ratio db 100 ; unknown 1 db 20 ; step cycles to hatch db 5 ; unknown 2 INCBIN "gfx/pokemon/nidoking/...
tests/test.asm
chucktilbury/virtual_machine
0
121549
<filename>tests/test.asm /* Test aritmetic on signed integers */ startup call entry exit int some_name = 22 + 3 int another_name = 123 _test1 push some_name pUSh another_name add prints push some_name div prints noop return entry call _test1 ret
src/video.asm
cicr99/SpaceInvaders
3
121552
%include "video.mac" ; Frame buffer location %define FBUFFER 0xB8000 ; FBOFFSET(byte row, byte column) %macro FBOFFSET 2.nolist xor eax, eax mov al, COLS mul byte %1 add al, %2 adc ah, 0 shl ax, 1 %endmacro section .text ; clear(byte char, byte attrs) ; Clear the screen by filling it with c...
programs/oeis/192/A192839.asm
karttu/loda
1
121553
; A192839: Molecular topological indices of the square graphs. ; 0,48,768,4320,15360,42000,96768,197568,368640,641520,1056000,1661088,2515968,3690960,5268480,7344000,10027008,13441968,17729280,23046240,29568000,37488528,47021568,58401600,71884800,87750000,106299648,127860768,152785920,181454160,214272000,251674368,2941...
programs/oeis/029/A029013.asm
karttu/loda
0
121554
; A029013: Expansion of 1/((1-x)(1-x^2)(1-x^5)(1-x^8)). ; 1,1,2,2,3,4,5,6,8,9,12,13,16,18,21,24,28,31,36,39,45,49,55,60,67,73,81,87,96,103,113,121,132,141,153,163,176,187,201,213,229,242,259,273,291,307,326,343,364,382,405,424 mov $1,17 lpb $0,1 mov $2,$0 sub $0,1 cal $2,25778 ; Expansion of 1/((1-x)(1-x^5)(1-x^...
Quickdraw/QuickDraw Source/GrafAsm.asm
Computer-history-Museum/MacPaint
2
121555
<reponame>Computer-history-Museum/MacPaint .INCLUDE GRAFTYPES.TEXT ;------------------------------------------------------------ ; ; --> GRAFASM.TEXT ; ; Miscellaneous unclassified routines. ; .PROC InitGraf,1 ;-------------------------------------------------- ; ; PROCEDURE InitGraf(globalPtr: Pt...
gfx/pokemon/ninetales/anim.asm
Dev727/ancientplatinum
28
121556
<gh_stars>10-100 frame 0, 07 frame 1, 08 frame 2, 09 frame 3, 09 frame 4, 10 frame 3, 12 frame 2, 10 frame 1, 08 endanim
main.asm
kichMan/ATtinyDebugger
0
121557
; ; main.asm ; Пример использования ; Created: 04.07.2017 20:23:01 ; Author : kich ; ; @todo Добавить директивы или макрос для определи контроллера .device ATtiny10 .include "tn10def.inc" ;***** Регистры ***** .def temp = r16 .equ _test = 0xf1 .cseg .org 0 rjmp start .include "debug.asm" .include "delay_pro...
programs/oeis/095/A095796.asm
jmorken/loda
1
121558
<gh_stars>1-10 ; A095796: 1 + (26*n+17+7*n^2)*n/2. ; 1,26,98,238,467,806,1276,1898,2693,3682,4886,6326,8023,9998,12272,14866,17801,21098,24778,28862,33371,38326,43748,49658,56077,63026,70526,78598,87263,96542,106456,117026,128273,140218,152882,166286,180451,195398,211148,227722,245141,263426,282598,302678,323687,345646...
sidinfo.asm
brpx/c64
47
121559
<reponame>brpx/c64 // print the music info while assembling // this is only used at assembling time // comment this if you don't need it // play special attention to the location and size of the sid file, if you're planning to use a different one .print "" .print "SID Data" .print "--------" .print "location=$"+toHexS...
boot/BIOS/mbr/disk_reader.asm
Andrispowq/HackOS
10
121560
[bits 16] DAPACK: db 0x10 db 0 blkcnt: dw 64 db_add: dw 0x8000 dw 0 d_lba: dd 0x1 dd 0 switch_endian_word: mov bh, al mov bl, ah ret ; cx -> read size, ebx -> LBA addr, es:di -> buffer ReadDisk: pusha mov word [blkcnt], cx mov word [db_add],...
Win10/PayLoads/TokenStealingShellCode.asm
IMULMUL/demos
13
121561
<reponame>IMULMUL/demos<gh_stars>10-100 ; compie with nasm: ; nasm.exe sc.asm ; ; Token Stealing Payload ; Win10 x64 RS3 16281. ; [bits 64] start: ;;push rax Change to the prolog you may need. ;;push rbx ;;push rcx ;;push rsp ;; kd> uf nt!PsGetCurrentProcess ;; nt!PsGetCurrentP...
audio/sfx/slots_new_spin.asm
etdv-thevoid/pokemon-rgb-enhanced
1
121562
<gh_stars>1-10 SFX_Slots_New_Spin_Ch4: duty 3 unknownsfx0x20 5, 225, 0, 7 unknownsfx0x20 2, 225, 128, 7 unknownsfx0x20 15, 241, 192, 7 endchannel SFX_Slots_New_Spin_Ch5: duty 2 unknownsfx0x20 4, 193, 193, 6 unknownsfx0x20 2, 193, 65, 7 unknownsfx0x20 15, 209, 129, 7 endchannel
data/pokemon/base_stats/murkrow.asm
AtmaBuster/pokeplat-gen2
6
121563
<filename>data/pokemon/base_stats/murkrow.asm db 0 ; species ID placeholder db 60, 85, 42, 91, 85, 42 ; hp atk def spd sat sdf db DARK, FLYING ; type db 30 ; catch rate db 107 ; base exp db NO_ITEM, NO_ITEM ; items db GENDER_F50 ; gender ratio db 20 ; step cycles to hatch INCBIN "gfx/pokemon/mu...
oeis/157/A157914.asm
neoneye/loda-programs
11
121564
<filename>oeis/157/A157914.asm ; A157914: a(n) = 8*n^2 - 1. ; Submitted by <NAME> ; 7,31,71,127,199,287,391,511,647,799,967,1151,1351,1567,1799,2047,2311,2591,2887,3199,3527,3871,4231,4607,4999,5407,5831,6271,6727,7199,7687,8191,8711,9247,9799,10367,10951,11551,12167,12799,13447,14111,14791,15487,16199,16927,17671,1843...
Transynther/x86/_processed/NONE/_zr_xt_/i3-7100_9_0xca_notsx.log_21829_1946.asm
ljhsiun2/medusa
9
121565
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r8 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0x17f68, %rsi lea addresses_WC_ht+0xd6f6, %rdi nop xor %r9, %r9 mov $79, %rcx rep movsw nop add %r9, %r9 lea addresses_WT_ht+0x6468, %r10 and $43374, %...
oeis/024/A024438.asm
neoneye/loda-programs
11
121566
<filename>oeis/024/A024438.asm ; A024438: Expansion of 1/((1-x)(1-7x)(1-8x)(1-10x)). ; Submitted by <NAME> ; 1,26,445,6330,81141,973746,11173405,124182410,1348136581,14378944866,151299635565,1575384732090,16269102500821,166926103626386,1703932925460925,17322243189947370,175524515134509861 add $0,2 lpb $0 sub $0,1 ...
source/personalities/ptest.asm
paulscottrobson/mega65-integer-basic
0
121567
.if TARGET=1 .include "personality_mega65.asm" .endif .if TARGET=2 .include "personality_6502.asm" .endif .include "personality_io.asm" Start: jsr IOInitialise ldx #St1 & 255 ldy #St1 >> 8 jsr IOPrintString Loop: ldx #$80 ldy #$00 jsr IOReadLine .byte 3 bra Loop St1:.text "7167 BYTES FR...
test_programs/font.asm
mfkiwl/QNICE-FPGA-hyperRAM
53
121568
<reponame>mfkiwl/QNICE-FPGA-hyperRAM ; displays all 256 characters of the current VGA font on the VGA screen ; and then waits for a key to be pressed on STDIN ; (therefore only works, if VGA is present, on UART, nothing is being output) ; done by sy2002 in January 2016 #include "../dist_kit/sysdef.asm" #include "../di...
programs/oeis/167/A167030.asm
karttu/loda
1
121569
<reponame>karttu/loda<gh_stars>1-10 ; A167030: a(n) = (2^n - (-1)^n - 3)/3. ; -1,0,0,2,4,10,20,42,84,170,340,682,1364,2730,5460,10922,21844,43690,87380,174762,349524,699050,1398100,2796202,5592404,11184810,22369620,44739242,89478484,178956970,357913940,715827882,1431655764,2863311530,5726623060,11453246122,22906492244,...
libsrc/target/zx/opus/opus_putsect.asm
jpoikela/z88dk
38
121571
; ; ZX Spectrum OPUS DISCOVERY specific routines ; ; <NAME> - 2014 ; ; Write a sector. ; A standard 178K Opus disk has 0..718 sectors ; Each sector is 256 bytes long ; ; int opus_putsect(int drive, int sector, char * buffer); ; ; $Id: opus_putsect.asm,v 1.5 2016-07-14 17:44:17 pauloscustodio Exp $ ; SECTION code_clib...
oeis/280/A280304.asm
neoneye/loda-programs
11
121572
<filename>oeis/280/A280304.asm ; A280304: a(n) = 3*n*(n^2 + 3*n + 4). ; 0,24,84,198,384,660,1044,1554,2208,3024,4020,5214,6624,8268,10164,12330,14784,17544,20628,24054,27840,32004,36564,41538,46944,52800,59124,65934,73248,81084,89460,98394,107904,118008,128724,140070,152064,164724,178068,192114,206880,222384,238644,255...