begin process at 2010 09 04 10:43:46
  Trouver un code source :
 
dans
 
Accueil > Forum > 

Python

 > 

Divers

 > 

Débutant(e)

 > 

PYTHON ==> PERL


Derniers messages déposésPoser une question dans le forum ou lancer une discussion

PYTHON ==> PERL

lundi 1 octobre 2007 à 11:08:55 | PYTHON ==> PERL

Adoc5

Salut à toutes et tous,

J'ai un code écrit en PYTHON et j'aimerai le convertir pour PERL car les personnes à qui je dois envoyer ce code n'utilisent que PERL. Pourriez-vous m'aider à réaliser cette conversion.

Voici, ci-dessous, le code en PYTHON: ce code permet de transformer un fichier assembleur compilé en un fichier de data prèt à être chargé en ram d'un µP.

******************************************************************************

import S19File
 
s19 = S19.S19File(r"D:\TOTO\TITI.S19")
 
teach_ranges = ( (0x41, 171),       # start address, count
                 (0x100, 320) )
 

idx = 1
for address, count in teach_ranges:
    for i in range(count):
        comment = ""
        if s19.has_key(address):
            value = s19.get(address)
            comment = ""
        else:
            comment = " NOP, to fill"
            value = 0x9D # NOP
        print "teach_data[%d]=16#%x -- ($%X)%s"%(idx, value, address, comment)
        address += 1
        idx += 1

*************************************************************************************

Le fichier de départ a cette forme:

S1130041CC010000006E280D120D1805180181075E
S11300510EFDB745BF441901BE00B70FA30F2729F1
S1130061AF01B60EA480A18026F2B60FB745BE003B
S1130071B644B70FA30F2711AF01B60EA480A18018
S113008126F2BE0FBF44180181CC015E6E7F046E5F
S10C009100006E1E066E000281DF
S11301006E191F6E011E6E80386E6937A6A04BFEF5
S1130110BD46BD8DA606AE55BD50A684AE00BD50ED
S1130120B644A1552638A606AEAABD50A684AE0094
S1130130BD50B644A1AA2626A606AE00BD50A6848C
S1130140AE00BD50B644A1002614A606AEFFBD50B5
S1130150A684AE00BD50B644A1FF2602200A1A01AF
S11301601A051701160520FE160116051B011A05AE
S105017020FE6B
S9030000FC

Le fichier d'arrivée a cette forme :

teach_data[1]=16#cc -- ($41)
teach_data[2]=16#1 -- ($42)
teach_data[3]=16#0 -- ($43)
teach_data[4]=16#0 -- ($44)
teach_data[5]=16#0 -- ($45)
teach_data[6]=16#6e -- ($46)
teach_data[7]=16#28 -- ($47)
teach_data[8]=16#d -- ($48)
teach_data[9]=16#12 -- ($49)
teach_data[10]=16#d -- ($4A)
teach_data[11]=16#18 -- ($4B)
teach_data[12]=16#5 -- ($4C)
teach_data[13]=16#18 -- ($4D)
teach_data[14]=16#1 -- ($4E)
teach_data[15]=16#81 -- ($4F)
teach_data[16]=16#7 -- ($50)
teach_data[17]=16#e -- ($51)
teach_data[18]=16#fd -- ($52)
teach_data[19]=16#b7 -- ($53)
teach_data[20]=16#45 -- ($54)
teach_data[21]=16#bf -- ($55)
teach_data[22]=16#44 -- ($56)
teach_data[23]=16#19 -- ($57)
teach_data[24]=16#1 -- ($58)
teach_data[25]=16#be -- ($59)
teach_data[26]=16#0 -- ($5A)
teach_data[27]=16#b7 -- ($5B)
teach_data[28]=16#f -- ($5C)
teach_data[29]=16#a3 -- ($5D)
teach_data[30]=16#f -- ($5E)
teach_data[31]=16#27 -- ($5F)
teach_data[32]=16#29 -- ($60)
teach_data[33]=16#af -- ($61)
teach_data[34]=16#1 -- ($62)
teach_data[35]=16#b6 -- ($63)
teach_data[36]=16#e -- ($64)
teach_data[37]=16#a4 -- ($65)
teach_data[38]=16#80 -- ($66)
teach_data[39]=16#a1 -- ($67)
teach_data[40]=16#80 -- ($68)
teach_data[41]=16#26 -- ($69)
teach_data[42]=16#f2 -- ($6A)
teach_data[43]=16#b6 -- ($6B)
teach_data[44]=16#f -- ($6C)
teach_data[45]=16#b7 -- ($6D)
teach_data[46]=16#45 -- ($6E)
teach_data[47]=16#be -- ($6F)
teach_data[48]=16#0 -- ($70)
teach_data[49]=16#b6 -- ($71)
teach_data[50]=16#44 -- ($72)
teach_data[51]=16#b7 -- ($73)
teach_data[52]=16#f -- ($74)
teach_data[53]=16#a3 -- ($75)
teach_data[54]=16#f -- ($76)
teach_data[55]=16#27 -- ($77)
teach_data[56]=16#11 -- ($78)
teach_data[57]=16#af -- ($79)
teach_data[58]=16#1 -- ($7A)
teach_data[59]=16#b6 -- ($7B)
teach_data[60]=16#e -- ($7C)
teach_data[61]=16#a4 -- ($7D)
teach_data[62]=16#80 -- ($7E)
teach_data[63]=16#a1 -- ($7F)
teach_data[64]=16#80 -- ($80)
teach_data[65]=16#26 -- ($81)
teach_data[66]=16#f2 -- ($82)
teach_data[67]=16#be -- ($83)
teach_data[68]=16#f -- ($84)
teach_data[69]=16#bf -- ($85)
teach_data[70]=16#44 -- ($86)
teach_data[71]=16#18 -- ($87)
teach_data[72]=16#1 -- ($88)
teach_data[73]=16#81 -- ($89)
teach_data[74]=16#cc -- ($8A)
teach_data[75]=16#1 -- ($8B)
teach_data[76]=16#5e -- ($8C)
teach_data[77]=16#6e -- ($8D)
teach_data[78]=16#7f -- ($8E)
teach_data[79]=16#4 -- ($8F)
teach_data[80]=16#6e -- ($90)
teach_data[81]=16#0 -- ($91)
teach_data[82]=16#0 -- ($92)
teach_data[83]=16#6e -- ($93)
teach_data[84]=16#1e -- ($94)
teach_data[85]=16#6 -- ($95)
teach_data[86]=16#6e -- ($96)
teach_data[87]=16#0 -- ($97)
teach_data[88]=16#2 -- ($98)
teach_data[89]=16#81 -- ($99)
teach_data[90]=16#9d -- ($9A) NOP, to fill
teach_data[91]=16#9d -- ($9B) NOP, to fill
teach_data[92]=16#9d -- ($9C) NOP, to fill
teach_data[93]=16#9d -- ($9D) NOP, to fill
teach_data[94]=16#9d -- ($9E) NOP, to fill
teach_data[95]=16#9d -- ($9F) NOP, to fill
teach_data[96]=16#9d -- ($A0) NOP, to fill
teach_data[97]=16#9d -- ($A1) NOP, to fill
teach_data[98]=16#9d -- ($A2) NOP, to fill
teach_data[99]=16#9d -- ($A3) NOP, to fill
teach_data[100]=16#9d -- ($A4) NOP, to fill
teach_data[101]=16#9d -- ($A5) NOP, to fill
teach_data[102]=16#9d -- ($A6) NOP, to fill
teach_data[103]=16#9d -- ($A7) NOP, to fill
teach_data[104]=16#9d -- ($A8) NOP, to fill
teach_data[105]=16#9d -- ($A9) NOP, to fill
teach_data[106]=16#9d -- ($AA) NOP, to fill
teach_data[107]=16#9d -- ($AB) NOP, to fill
teach_data[108]=16#9d -- ($AC) NOP, to fill
teach_data[109]=16#9d -- ($AD) NOP, to fill
teach_data[110]=16#9d -- ($AE) NOP, to fill
teach_data[111]=16#9d -- ($AF) NOP, to fill
teach_data[112]=16#9d -- ($B0) NOP, to fill
teach_data[113]=16#9d -- ($B1) NOP, to fill
teach_data[114]=16#9d -- ($B2) NOP, to fill
teach_data[115]=16#9d -- ($B3) NOP, to fill
teach_data[116]=16#9d -- ($B4) NOP, to fill
teach_data[117]=16#9d -- ($B5) NOP, to fill
teach_data[118]=16#9d -- ($B6) NOP, to fill
teach_data[119]=16#9d -- ($B7) NOP, to fill
teach_data[120]=16#9d -- ($B8) NOP, to fill
teach_data[121]=16#9d -- ($B9) NOP, to fill
teach_data[122]=16#9d -- ($BA) NOP, to fill
teach_data[123]=16#9d -- ($BB) NOP, to fill
teach_data[124]=16#9d -- ($BC) NOP, to fill
teach_data[125]=16#9d -- ($BD) NOP, to fill
teach_data[126]=16#9d -- ($BE) NOP, to fill
teach_data[127]=16#9d -- ($BF) NOP, to fill
teach_data[128]=16#9d -- ($C0) NOP, to fill
teach_data[129]=16#9d -- ($C1) NOP, to fill
teach_data[130]=16#9d -- ($C2) NOP, to fill
teach_data[131]=16#9d -- ($C3) NOP, to fill
teach_data[132]=16#9d -- ($C4) NOP, to fill
teach_data[133]=16#9d -- ($C5) NOP, to fill
teach_data[134]=16#9d -- ($C6) NOP, to fill
teach_data[135]=16#9d -- ($C7) NOP, to fill
teach_data[136]=16#9d -- ($C8) NOP, to fill
teach_data[137]=16#9d -- ($C9) NOP, to fill
teach_data[138]=16#9d -- ($CA) NOP, to fill
teach_data[139]=16#9d -- ($CB) NOP, to fill
teach_data[140]=16#9d -- ($CC) NOP, to fill
teach_data[141]=16#9d -- ($CD) NOP, to fill
teach_data[142]=16#9d -- ($CE) NOP, to fill
teach_data[143]=16#9d -- ($CF) NOP, to fill
teach_data[144]=16#9d -- ($D0) NOP, to fill
teach_data[145]=16#9d -- ($D1) NOP, to fill
teach_data[146]=16#9d -- ($D2) NOP, to fill
teach_data[147]=16#9d -- ($D3) NOP, to fill
teach_data[148]=16#9d -- ($D4) NOP, to fill
teach_data[149]=16#9d -- ($D5) NOP, to fill
teach_data[150]=16#9d -- ($D6) NOP, to fill
teach_data[151]=16#9d -- ($D7) NOP, to fill
teach_data[152]=16#9d -- ($D8) NOP, to fill
teach_data[153]=16#9d -- ($D9) NOP, to fill
teach_data[154]=16#9d -- ($DA) NOP, to fill
teach_data[155]=16#9d -- ($DB) NOP, to fill
teach_data[156]=16#9d -- ($DC) NOP, to fill
teach_data[157]=16#9d -- ($DD) NOP, to fill
teach_data[158]=16#9d -- ($DE) NOP, to fill
teach_data[159]=16#9d -- ($DF) NOP, to fill
teach_data[160]=16#9d -- ($E0) NOP, to fill
teach_data[161]=16#9d -- ($E1) NOP, to fill
teach_data[162]=16#9d -- ($E2) NOP, to fill
teach_data[163]=16#9d -- ($E3) NOP, to fill
teach_data[164]=16#9d -- ($E4) NOP, to fill
teach_data[165]=16#9d -- ($E5) NOP, to fill
teach_data[166]=16#9d -- ($E6) NOP, to fill
teach_data[167]=16#9d -- ($E7) NOP, to fill
teach_data[168]=16#9d -- ($E8) NOP, to fill
teach_data[169]=16#9d -- ($E9) NOP, to fill
teach_data[170]=16#9d -- ($EA) NOP, to fill
teach_data[171]=16#9d -- ($EB) NOP, to fill
teach_data[172]=16#6e -- ($100)
teach_data[173]=16#19 -- ($101)
teach_data[174]=16#1f -- ($102)
teach_data[175]=16#6e -- ($103)
teach_data[176]=16#1 -- ($104)
teach_data[177]=16#1e -- ($105)
teach_data[178]=16#6e -- ($106)
teach_data[179]=16#80 -- ($107)
teach_data[180]=16#38 -- ($108)
teach_data[181]=16#6e -- ($109)
teach_data[182]=16#69 -- ($10A)
teach_data[183]=16#37 -- ($10B)
teach_data[184]=16#a6 -- ($10C)
teach_data[185]=16#a0 -- ($10D)
teach_data[186]=16#4b -- ($10E)
teach_data[187]=16#fe -- ($10F)
teach_data[188]=16#bd -- ($110)
teach_data[189]=16#46 -- ($111)
teach_data[190]=16#bd -- ($112)
teach_data[191]=16#8d -- ($113)
teach_data[192]=16#a6 -- ($114)
teach_data[193]=16#6 -- ($115)
teach_data[194]=16#ae -- ($116)
teach_data[195]=16#55 -- ($117)
teach_data[196]=16#bd -- ($118)
teach_data[197]=16#50 -- ($119)
teach_data[198]=16#a6 -- ($11A)
teach_data[199]=16#84 -- ($11B)
teach_data[200]=16#ae -- ($11C)
teach_data[201]=16#0 -- ($11D)
teach_data[202]=16#bd -- ($11E)
teach_data[203]=16#50 -- ($11F)
teach_data[204]=16#b6 -- ($120)
teach_data[205]=16#44 -- ($121)
teach_data[206]=16#a1 -- ($122)
teach_data[207]=16#55 -- ($123)
teach_data[208]=16#26 -- ($124)
teach_data[209]=16#38 -- ($125)
teach_data[210]=16#a6 -- ($126)
teach_data[211]=16#6 -- ($127)
teach_data[212]=16#ae -- ($128)
teach_data[213]=16#aa -- ($129)
teach_data[214]=16#bd -- ($12A)
teach_data[215]=16#50 -- ($12B)
teach_data[216]=16#a6 -- ($12C)
teach_data[217]=16#84 -- ($12D)
teach_data[218]=16#ae -- ($12E)
teach_data[219]=16#0 -- ($12F)
teach_data[220]=16#bd -- ($130)
teach_data[221]=16#50 -- ($131)
teach_data[222]=16#b6 -- ($132)
teach_data[223]=16#44 -- ($133)
teach_data[224]=16#a1 -- ($134)
teach_data[225]=16#aa -- ($135)
teach_data[226]=16#26 -- ($136)
teach_data[227]=16#26 -- ($137)
teach_data[228]=16#a6 -- ($138)
teach_data[229]=16#6 -- ($139)
teach_data[230]=16#ae -- ($13A)
teach_data[231]=16#0 -- ($13B)
teach_data[232]=16#bd -- ($13C)
teach_data[233]=16#50 -- ($13D)
teach_data[234]=16#a6 -- ($13E)
teach_data[235]=16#84 -- ($13F)
teach_data[236]=16#ae -- ($140)
teach_data[237]=16#0 -- ($141)
teach_data[238]=16#bd -- ($142)
teach_data[239]=16#50 -- ($143)
teach_data[240]=16#b6 -- ($144)
teach_data[241]=16#44 -- ($145)
teach_data[242]=16#a1 -- ($146)
teach_data[243]=16#0 -- ($147)
teach_data[244]=16#26 -- ($148)
teach_data[245]=16#14 -- ($149)
teach_data[246]=16#a6 -- ($14A)
teach_data[247]=16#6 -- ($14B)
teach_data[248]=16#ae -- ($14C)
teach_data[249]=16#ff -- ($14D)
teach_data[250]=16#bd -- ($14E)
teach_data[251]=16#50 -- ($14F)
teach_data[252]=16#a6 -- ($150)
teach_data[253]=16#84 -- ($151)
teach_data[254]=16#ae -- ($152)
teach_data[255]=16#0 -- ($153)
teach_data[256]=16#bd -- ($154)
teach_data[257]=16#50 -- ($155)
teach_data[258]=16#b6 -- ($156)
teach_data[259]=16#44 -- ($157)
teach_data[260]=16#a1 -- ($158)
teach_data[261]=16#ff -- ($159)
teach_data[262]=16#26 -- ($15A)
teach_data[263]=16#2 -- ($15B)
teach_data[264]=16#20 -- ($15C)
teach_data[265]=16#a -- ($15D)
teach_data[266]=16#1a -- ($15E)
teach_data[267]=16#1 -- ($15F)
teach_data[268]=16#1a -- ($160)
teach_data[269]=16#5 -- ($161)
teach_data[270]=16#17 -- ($162)
teach_data[271]=16#1 -- ($163)
teach_data[272]=16#16 -- ($164)
teach_data[273]=16#5 -- ($165)
teach_data[274]=16#20 -- ($166)
teach_data[275]=16#fe -- ($167)
teach_data[276]=16#16 -- ($168)
teach_data[277]=16#1 -- ($169)
teach_data[278]=16#16 -- ($16A)
teach_data[279]=16#5 -- ($16B)
teach_data[280]=16#1b -- ($16C)
teach_data[281]=16#1 -- ($16D)
teach_data[282]=16#1a -- ($16E)
teach_data[283]=16#5 -- ($16F)
teach_data[284]=16#20 -- ($170)
teach_data[285]=16#fe -- ($171)
teach_data[286]=16#9d -- ($172) NOP, to fill
teach_data[287]=16#9d -- ($173) NOP, to fill
teach_data[288]=16#9d -- ($174) NOP, to fill
teach_data[289]=16#9d -- ($175) NOP, to fill
teach_data[290]=16#9d -- ($176) NOP, to fill
teach_data[291]=16#9d -- ($177) NOP, to fill
teach_data[292]=16#9d -- ($178) NOP, to fill
teach_data[293]=16#9d -- ($179) NOP, to fill
teach_data[294]=16#9d -- ($17A) NOP, to fill
teach_data[295]=16#9d -- ($17B) NOP, to fill
teach_data[296]=16#9d -- ($17C) NOP, to fill
teach_data[297]=16#9d -- ($17D) NOP, to fill
teach_data[298]=16#9d -- ($17E) NOP, to fill
teach_data[299]=16#9d -- ($17F) NOP, to fill
teach_data[300]=16#9d -- ($180) NOP, to fill
teach_data[301]=16#9d -- ($181) NOP, to fill
teach_data[302]=16#9d -- ($182) NOP, to fill
teach_data[303]=16#9d -- ($183) NOP, to fill
teach_data[304]=16#9d -- ($184) NOP, to fill
teach_data[305]=16#9d -- ($185) NOP, to fill
teach_data[306]=16#9d -- ($186) NOP, to fill
teach_data[307]=16#9d -- ($187) NOP, to fill
teach_data[308]=16#9d -- ($188) NOP, to fill
teach_data[309]=16#9d -- ($189) NOP, to fill
teach_data[310]=16#9d -- ($18A) NOP, to fill
teach_data[311]=16#9d -- ($18B) NOP, to fill
teach_data[312]=16#9d -- ($18C) NOP, to fill
teach_data[313]=16#9d -- ($18D) NOP, to fill
teach_data[314]=16#9d -- ($18E) NOP, to fill
teach_data[315]=16#9d -- ($18F) NOP, to fill
teach_data[316]=16#9d -- ($190) NOP, to fill
teach_data[317]=16#9d -- ($191) NOP, to fill
teach_data[318]=16#9d -- ($192) NOP, to fill
teach_data[319]=16#9d -- ($193) NOP, to fill
teach_data[320]=16#9d -- ($194) NOP, to fill
teach_data[321]=16#9d -- ($195) NOP, to fill
teach_data[322]=16#9d -- ($196) NOP, to fill
teach_data[323]=16#9d -- ($197) NOP, to fill
teach_data[324]=16#9d -- ($198) NOP, to fill
teach_data[325]=16#9d -- ($199) NOP, to fill
teach_data[326]=16#9d -- ($19A) NOP, to fill
teach_data[327]=16#9d -- ($19B) NOP, to fill
teach_data[328]=16#9d -- ($19C) NOP, to fill
teach_data[329]=16#9d -- ($19D) NOP, to fill
teach_data[330]=16#9d -- ($19E) NOP, to fill
teach_data[331]=16#9d -- ($19F) NOP, to fill
teach_data[332]=16#9d -- ($1A0) NOP, to fill
teach_data[333]=16#9d -- ($1A1) NOP, to fill
teach_data[334]=16#9d -- ($1A2) NOP, to fill
teach_data[335]=16#9d -- ($1A3) NOP, to fill
teach_data[336]=16#9d -- ($1A4) NOP, to fill
teach_data[337]=16#9d -- ($1A5) NOP, to fill
teach_data[338]=16#9d -- ($1A6) NOP, to fill
teach_data[339]=16#9d -- ($1A7) NOP, to fill
teach_data[340]=16#9d -- ($1A8) NOP, to fill
teach_data[341]=16#9d -- ($1A9) NOP, to fill
teach_data[342]=16#9d -- ($1AA) NOP, to fill
teach_data[343]=16#9d -- ($1AB) NOP, to fill
teach_data[344]=16#9d -- ($1AC) NOP, to fill
teach_data[345]=16#9d -- ($1AD) NOP, to fill
teach_data[346]=16#9d -- ($1AE) NOP, to fill
teach_data[347]=16#9d -- ($1AF) NOP, to fill
teach_data[348]=16#9d -- ($1B0) NOP, to fill
teach_data[349]=16#9d -- ($1B1) NOP, to fill
teach_data[350]=16#9d -- ($1B2) NOP, to fill
teach_data[351]=16#9d -- ($1B3) NOP, to fill
teach_data[352]=16#9d -- ($1B4) NOP, to fill
teach_data[353]=16#9d -- ($1B5) NOP, to fill
teach_data[354]=16#9d -- ($1B6) NOP, to fill
teach_data[355]=16#9d -- ($1B7) NOP, to fill
teach_data[356]=16#9d -- ($1B8) NOP, to fill
teach_data[357]=16#9d -- ($1B9) NOP, to fill
teach_data[358]=16#9d -- ($1BA) NOP, to fill
teach_data[359]=16#9d -- ($1BB) NOP, to fill
teach_data[360]=16#9d -- ($1BC) NOP, to fill
teach_data[361]=16#9d -- ($1BD) NOP, to fill
teach_data[362]=16#9d -- ($1BE) NOP, to fill
teach_data[363]=16#9d -- ($1BF) NOP, to fill
teach_data[364]=16#9d -- ($1C0) NOP, to fill
teach_data[365]=16#9d -- ($1C1) NOP, to fill
teach_data[366]=16#9d -- ($1C2) NOP, to fill
teach_data[367]=16#9d -- ($1C3) NOP, to fill
teach_data[368]=16#9d -- ($1C4) NOP, to fill
teach_data[369]=16#9d -- ($1C5) NOP, to fill
teach_data[370]=16#9d -- ($1C6) NOP, to fill
teach_data[371]=16#9d -- ($1C7) NOP, to fill
teach_data[372]=16#9d -- ($1C8) NOP, to fill
teach_data[373]=16#9d -- ($1C9) NOP, to fill
teach_data[374]=16#9d -- ($1CA) NOP, to fill
teach_data[375]=16#9d -- ($1CB) NOP, to fill
teach_data[376]=16#9d -- ($1CC) NOP, to fill
teach_data[377]=16#9d -- ($1CD) NOP, to fill
teach_data[378]=16#9d -- ($1CE) NOP, to fill
teach_data[379]=16#9d -- ($1CF) NOP, to fill
teach_data[380]=16#9d -- ($1D0) NOP, to fill
teach_data[381]=16#9d -- ($1D1) NOP, to fill
teach_data[382]=16#9d -- ($1D2) NOP, to fill
teach_data[383]=16#9d -- ($1D3) NOP, to fill
teach_data[384]=16#9d -- ($1D4) NOP, to fill
teach_data[385]=16#9d -- ($1D5) NOP, to fill
teach_data[386]=16#9d -- ($1D6) NOP, to fill
teach_data[387]=16#9d -- ($1D7) NOP, to fill
teach_data[388]=16#9d -- ($1D8) NOP, to fill
teach_data[389]=16#9d -- ($1D9) NOP, to fill
teach_data[390]=16#9d -- ($1DA) NOP, to fill
teach_data[391]=16#9d -- ($1DB) NOP, to fill
teach_data[392]=16#9d -- ($1DC) NOP, to fill
teach_data[393]=16#9d -- ($1DD) NOP, to fill
teach_data[394]=16#9d -- ($1DE) NOP, to fill
teach_data[395]=16#9d -- ($1DF) NOP, to fill
teach_data[396]=16#9d -- ($1E0) NOP, to fill
teach_data[397]=16#9d -- ($1E1) NOP, to fill
teach_data[398]=16#9d -- ($1E2) NOP, to fill
teach_data[399]=16#9d -- ($1E3) NOP, to fill
teach_data[400]=16#9d -- ($1E4) NOP, to fill
teach_data[401]=16#9d -- ($1E5) NOP, to fill
teach_data[402]=16#9d -- ($1E6) NOP, to fill
teach_data[403]=16#9d -- ($1E7) NOP, to fill
teach_data[404]=16#9d -- ($1E8) NOP, to fill
teach_data[405]=16#9d -- ($1E9) NOP, to fill
teach_data[406]=16#9d -- ($1EA) NOP, to fill
teach_data[407]=16#9d -- ($1EB) NOP, to fill
teach_data[408]=16#9d -- ($1EC) NOP, to fill
teach_data[409]=16#9d -- ($1ED) NOP, to fill
teach_data[410]=16#9d -- ($1EE) NOP, to fill
teach_data[411]=16#9d -- ($1EF) NOP, to fill
teach_data[412]=16#9d -- ($1F0) NOP, to fill
teach_data[413]=16#9d -- ($1F1) NOP, to fill
teach_data[414]=16#9d -- ($1F2) NOP, to fill
teach_data[415]=16#9d -- ($1F3) NOP, to fill
teach_data[416]=16#9d -- ($1F4) NOP, to fill
teach_data[417]=16#9d -- ($1F5) NOP, to fill
teach_data[418]=16#9d -- ($1F6) NOP, to fill
teach_data[419]=16#9d -- ($1F7) NOP, to fill
teach_data[420]=16#9d -- ($1F8) NOP, to fill
teach_data[421]=16#9d -- ($1F9) NOP, to fill
teach_data[422]=16#9d -- ($1FA) NOP, to fill
teach_data[423]=16#9d -- ($1FB) NOP, to fill
teach_data[424]=16#9d -- ($1FC) NOP, to fill
teach_data[425]=16#9d -- ($1FD) NOP, to fill
teach_data[426]=16#9d -- ($1FE) NOP, to fill
teach_data[427]=16#9d -- ($1FF) NOP, to fill
teach_data[428]=16#9d -- ($200) NOP, to fill
teach_data[429]=16#9d -- ($201) NOP, to fill
teach_data[430]=16#9d -- ($202) NOP, to fill
teach_data[431]=16#9d -- ($203) NOP, to fill
teach_data[432]=16#9d -- ($204) NOP, to fill
teach_data[433]=16#9d -- ($205) NOP, to fill
teach_data[434]=16#9d -- ($206) NOP, to fill
teach_data[435]=16#9d -- ($207) NOP, to fill
teach_data[436]=16#9d -- ($208) NOP, to fill
teach_data[437]=16#9d -- ($209) NOP, to fill
teach_data[438]=16#9d -- ($20A) NOP, to fill
teach_data[439]=16#9d -- ($20B) NOP, to fill
teach_data[440]=16#9d -- ($20C) NOP, to fill
teach_data[441]=16#9d -- ($20D) NOP, to fill
teach_data[442]=16#9d -- ($20E) NOP, to fill
teach_data[443]=16#9d -- ($20F) NOP, to fill
teach_data[444]=16#9d -- ($210) NOP, to fill
teach_data[445]=16#9d -- ($211) NOP, to fill
teach_data[446]=16#9d -- ($212) NOP, to fill
teach_data[447]=16#9d -- ($213) NOP, to fill
teach_data[448]=16#9d -- ($214) NOP, to fill
teach_data[449]=16#9d -- ($215) NOP, to fill
teach_data[450]=16#9d -- ($216) NOP, to fill
teach_data[451]=16#9d -- ($217) NOP, to fill
teach_data[452]=16#9d -- ($218) NOP, to fill
teach_data[453]=16#9d -- ($219) NOP, to fill
teach_data[454]=16#9d -- ($21A) NOP, to fill
teach_data[455]=16#9d -- ($21B) NOP, to fill
teach_data[456]=16#9d -- ($21C) NOP, to fill
teach_data[457]=16#9d -- ($21D) NOP, to fill
teach_data[458]=16#9d -- ($21E) NOP, to fill
teach_data[459]=16#9d -- ($21F) NOP, to fill
teach_data[460]=16#9d -- ($220) NOP, to fill
teach_data[461]=16#9d -- ($221) NOP, to fill
teach_data[462]=16#9d -- ($222) NOP, to fill
teach_data[463]=16#9d -- ($223) NOP, to fill
teach_data[464]=16#9d -- ($224) NOP, to fill
teach_data[465]=16#9d -- ($225) NOP, to fill
teach_data[466]=16#9d -- ($226) NOP, to fill
teach_data[467]=16#9d -- ($227) NOP, to fill
teach_data[468]=16#9d -- ($228) NOP, to fill
teach_data[469]=16#9d -- ($229) NOP, to fill
teach_data[470]=16#9d -- ($22A) NOP, to fill
teach_data[471]=16#9d -- ($22B) NOP, to fill
teach_data[472]=16#9d -- ($22C) NOP, to fill
teach_data[473]=16#9d -- ($22D) NOP, to fill
teach_data[474]=16#9d -- ($22E) NOP, to fill
teach_data[475]=16#9d -- ($22F) NOP, to fill
teach_data[476]=16#9d -- ($230) NOP, to fill
teach_data[477]=16#9d -- ($231) NOP, to fill
teach_data[478]=16#9d -- ($232) NOP, to fill
teach_data[479]=16#9d -- ($233) NOP, to fill
teach_data[480]=16#9d -- ($234) NOP, to fill
teach_data[481]=16#9d -- ($235) NOP, to fill
teach_data[482]=16#9d -- ($236) NOP, to fill
teach_data[483]=16#9d -- ($237) NOP, to fill
teach_data[484]=16#9d -- ($238) NOP, to fill
teach_data[485]=16#9d -- ($239) NOP, to fill
teach_data[486]=16#9d -- ($23A) NOP, to fill
teach_data[487]=16#9d -- ($23B) NOP, to fill
teach_data[488]=16#9d -- ($23C) NOP, to fill
teach_data[489]=16#9d -- ($23D) NOP, to fill
teach_data[490]=16#9d -- ($23E) NOP, to fill
teach_data[491]=16#9d -- ($23F) NOP, to fill


Merci d'avance pour votre aide.
A+
Adoc5



Cette discussion est classée dans : data, to, nop, 9d, fillteach


Répondre à ce message

Sujets en rapport avec ce message

Socket et Threading [ par dabcorp ] Bonjour , J'ai fait un client/serveur socket , mais je me comprend pas les threads ... Je suis obligé de faire une boucle pour relance le programme à restauration data.fs zope [ par rabikisa ] Comment restaurer data.fs dans zope si le tous les fichier sur un serveur quelconque  n'est plus recuperable alors qu'on a pu recuperer son data.fsmer Comment restaurer data.fs dans l' application zope? [ par rabikisa ] Bonjour, J'ai monté un serveur Zope sous Linux et je dois mettre en place une stratégie de sauvegarde. Zope sauvegarde toutes ses configurations, les hexa to bin [ par roppy ] Bonjourje recherche une fonction pour trnasformer un hexa en binaire sous pythonune idée ?Mickael Compiler un Script Python en Executable [ par craftsystem ] Compiler un Script Python en Exexcutable  en 2 secondes avec les Addons pour Py2exe                             que j'ai Concocter en Delphi7 et Dev-C bot irc python problème rejoindre channel [ par Kuby ] Bonjour, voila, après avoir un petit peu fouiller sur le net, j'ai reussi a trouver / modifier ceci : Mais je n'arrive pas à rejoindre de channel... a Perl to Python [ par mike1310 ] Bonjour,je ne savais pas trop ou poster mon message étant donné qu'il n'y a pas de codes sources pour Perl.J'ai en fait un code en Perl que je dois re Pb avec gtk et treeview [ par gaillus ] Bonjour à tous,j'utilise GTK pour faire une IHM dans laquelle j'ai des treeviews.Il se trouve que j'ai besoin de mettre dans des cases du treeview des


Nos sponsors


Sondage...

CalendriCode

Septembre 2010
LMMJVSD
  12345
6789101112
13141516171819
20212223242526
27282930   

Consulter la suite du CalendriCode

 
Développement réalisé par Nicolas SOREL (Nix) avec l'aide de : Cyril DURAND et Emmanuel (EBArtSoft), Merci à Vincent pour ses précieux conseils.
CodeS-SourceS.com© Toute reproduction même partielle est interdite sauf accord écrit du Webmaster
CodeS-SourceS.com© est une marque déposée tous droits réservés

Google Coop CodeS-SourceS Google Coop CodeS-SourceS
Temps d'éxécution de la page : 0,437 sec (3)

Nous contacter | Annoncer sur CodeS-SourceS | Mentions légales